using Infrastructure.Domain; using System.ComponentModel.DataAnnotations; namespace Infrastructure.Application.Entites.Settings { [Display(Name = "配置")] public class Setting : BaseEntity { [Required] public string Name { get; set; } public string Value { get; set; } public SettingType Type { get; set; } } }