Files
meezi/src/Meezi.Core/Entities/PlatformSetting.cs
T

11 lines
348 B
C#
Raw Normal View History

2026-05-27 21:33:48 +03:30
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;
}