(精华)2020年6月26日 C#类库model SelectOption 愚公搬代码 2021-05-13 58 阅读1分钟 namespace Coldairarrow.Util { /// <summary> /// 前端SelectOption /// </summary> public class SelectOption { public string value { get; set; } public string text { get; set; } } }