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

namespace Coldairarrow.Util
{
    /// <summary>
    /// 前端SelectOption
    /// </summary>
    public class SelectOption
    {
        public string value { get; set; }
        public string text { get; set; }
    }
}

猜你喜欢

转载自blog.csdn.net/aa2528877987/article/details/106971260