Spaces:
Paused
Paused
File size: 409 Bytes
6ab62bc | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | using System.ComponentModel.DataAnnotations;
namespace Entities.Models
{
public class SystemSetting
{
[Key]
public string Key { get; set; } = string.Empty;
[Required]
public string Value { get; set; } = string.Empty;
public string? Description { get; set; }
public DateTime UpdatedAt { get; set; } = DateTime.UtcNow;
}
}
|