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.
Zero/ZeroLevel/Services/Specification/Building/SpecificationParameter.cs

28 lines
723 B

6 years ago
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;
}
}

Powered by TurnKey Linux.