Spaces:
Paused
Paused
| using System.ComponentModel.DataAnnotations; | |
| namespace Entities.Models | |
| { | |
| public class SystemSetting | |
| { | |
| [] | |
| public string Key { get; set; } = string.Empty; | |
| [] | |
| public string Value { get; set; } = string.Empty; | |
| public string? Description { get; set; } | |
| public DateTime UpdatedAt { get; set; } = DateTime.UtcNow; | |
| } | |
| } | |