/*********************************************************************** * Project: baifenBinfa * ProjectName: 百分兵法管理系统 * Web: http://chuanyin.com * Author: * Email: * CreateTime: 202403/02 * Description: 暂无 ***********************************************************************/ using System.ComponentModel.DataAnnotations; namespace CoreCms.Net.Model.ViewModels.Basics { /// /// 全局配置字典值内容 /// public class DictionaryKeyValues { /// /// key /// [Required(ErrorMessage = "key不能为空")] public string sKey { get; set; } /// /// 值 /// public string sValue { get; set; } } /// /// 常用复用无条件匹配 /// public class CommonKeyValues { /// /// key /// [Required(ErrorMessage = "key不能为空")] public string sKey { get; set; } /// /// 值 /// public string sValue { get; set; } /// /// 说明备注 /// public string sDescription { get; set; } } }