(精华)2020年6月26日 C#类库model SelectOption

58 阅读1分钟
namespace Coldairarrow.Util
{
    /// <summary>
    /// 前端SelectOption
    /// </summary>
    public class SelectOption
    {
        public string value { get; set; }
        public string text { get; set; }
    }
}