using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace VideoAnalysisCore.Common.Dto { /// /// 公共返回实体 /// public class ComboModel { public ComboModel(string t, object v) { Text = t; Value = v; } public ComboModel() { } public object Value { get; set; } public string Text { get; set; } } }