namespace Meezi.Core.Entities; public class PlatformSetting : BaseEntity { public string Key { get; set; } = string.Empty; public string Value { get; set; } = string.Empty; public string Category { get; set; } = "general"; public string? DescriptionFa { get; set; } public DateTime UpdatedAt { get; set; } = DateTime.UtcNow; }