SystemConfig.cs 479 B

1234567891011121314151617181920212223
  1. using System;
  2. using System.Collections.Generic;
  3. namespace Database.Database;
  4. public partial class SystemConfig
  5. {
  6. public int Id { get; set; }
  7. public string ConfigKey { get; set; } = null!;
  8. public string? ConfigValue { get; set; }
  9. public string? ConfigType { get; set; }
  10. public string? Description { get; set; }
  11. public bool? IsEditable { get; set; }
  12. public DateTime? CreatedDate { get; set; }
  13. public DateTime? LastUpdate { get; set; }
  14. }