SysSetting.cs 302 B

123456789101112
  1. using System.ComponentModel.DataAnnotations;
  2. using ShwasherSys.Authorization.Users;
  3. using IwbZero.BaseSysInfo;
  4. namespace ShwasherSys.BaseSysInfo
  5. {
  6. public class SysSetting : IwbSysSetting<SysUser>
  7. {
  8. //[StringLength(int.MaxValue)]
  9. //public new string Value { get; set; }
  10. }
  11. }