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.
haoliang-net/src/CncModels/Dto/Common/SimpleOption.cs

12 lines
222 B
C#

namespace CncModels.Dto.Common
{
/// <summary>
/// 通用下拉项
/// </summary>
public class SimpleOption
{
public string Value { get; set; }
public string Label { get; set; }
}
}