using NFine.Application.Interface; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace NFine.Application.Models { /// /// 选择列表模型 /// public class SelectItemDto : IElementKey { public string value { get; set; } public string label { get; set; } public int key { get; set; } } }