11 lines
348 B
C#
11 lines
348 B
C#
|
|
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;
|
||
|
|
}
|