You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

25 lines
533 B
C#

namespace DS.WMS.Core.Info.Dtos
{
/// <summary>
/// 强类型参数
/// </summary>
/// <typeparam name="T"></typeparam>
public class Param<T>
{
/// <summary>
/// 参数名
/// </summary>
public string Name { get; set; } = string.Empty;
/// <summary>
/// 参数值
/// </summary>
public T? Value { get; set; }
/// <summary>
/// 参数显示值
/// </summary>
public string? DisplayValue { get; set; }
}
}