mirror of https://github.com/ogoun/Zero.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
633 B
30 lines
633 B
using System;
|
|
|
|
namespace ZeroLevel.Contracts.Specification.Building
|
|
{
|
|
/// <summary>
|
|
/// Specification constructor parameter
|
|
/// </summary>
|
|
public class SpecificationParameter
|
|
{
|
|
/// <summary>
|
|
/// Display Name
|
|
/// </summary>
|
|
public string DisplayName;
|
|
|
|
/// <summary>
|
|
/// Parameter name
|
|
/// </summary>
|
|
public string ParameterName;
|
|
|
|
/// <summary>
|
|
/// Parameter type
|
|
/// </summary>
|
|
public Type ParameterType;
|
|
|
|
/// <summary>
|
|
/// Parameter value
|
|
/// </summary>
|
|
public object Value;
|
|
}
|
|
} |