namespace Nuuru.Server.Models { public class SiteSetting { public string Key { get; set; } = string.Empty; public string Value { get; set; } = string.Empty; public DateTime UpdatedAt { get; set; } = DateTime.UtcNow; } }