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
631 B

6 years ago
using System;
namespace ZeroLevel.Contracts.Specification.Building
{
/// <summary>
6 years ago
/// Specification constructor parameter
6 years ago
/// </summary>
public class SpecificationParameter
{
/// <summary>
6 years ago
/// Display Name
6 years ago
/// </summary>
public string DisplayName;
/// <summary>
6 years ago
/// Parameter name
6 years ago
/// </summary>
public string ParameterName;
/// <summary>
6 years ago
/// Parameter type
6 years ago
/// </summary>
public Type ParameterType;
/// <summary>
6 years ago
/// Parameter value
6 years ago
/// </summary>
public object Value;
}
}

Powered by TurnKey Linux.