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.
28 lines
723 B
28 lines
723 B
using System;
|
|
|
|
namespace ZeroLevel.Contracts.Specification.Building
|
|
{
|
|
/// <summary>
|
|
/// Параметр конструктора спецификации
|
|
/// </summary>
|
|
public class SpecificationParameter
|
|
{
|
|
/// <summary>
|
|
/// Отображаемое имя
|
|
/// </summary>
|
|
public string DisplayName;
|
|
/// <summary>
|
|
/// Имя параметра
|
|
/// </summary>
|
|
public string ParameterName;
|
|
/// <summary>
|
|
/// Тип параметра
|
|
/// </summary>
|
|
public Type ParameterType;
|
|
/// <summary>
|
|
/// Значение параметра
|
|
/// </summary>
|
|
public object Value;
|
|
}
|
|
}
|