| 1234567891011121314151617181920212223 |
- using System;
- using System.Collections.Generic;
- namespace Database.Database;
- public partial class SystemConfig
- {
- public int Id { get; set; }
- public string ConfigKey { get; set; } = null!;
- public string? ConfigValue { get; set; }
- public string? ConfigType { get; set; }
- public string? Description { get; set; }
- public bool? IsEditable { get; set; }
- public DateTime? CreatedDate { get; set; }
- public DateTime? LastUpdate { get; set; }
- }
|