namespace TaxBaik.Domain.Entities; public class SiteSetting { public string Key { get; set; } = null!; public string Value { get; set; } = null!; public DateTime UpdatedAt { get; set; } }