9 lines
201 B
C#
9 lines
201 B
C#
namespace TaxBaik.Domain.Entities;
|
|
|
|
public class SiteSetting
|
|
{
|
|
public string Key { get; set; } = null!;
|
|
public string Value { get; set; } = null!;
|
|
public DateTime UpdatedAt { get; set; }
|
|
}
|