2024-04-22 13:33:39 +03:30
|
|
|
|
namespace Netina.Domain.MartenEntities.Settings;
|
2024-04-01 13:05:11 +03:30
|
|
|
|
|
|
|
|
|
|
public class BaseSetting : MartenEntity
|
|
|
|
|
|
{
|
|
|
|
|
|
public string Name { get; set; } = string.Empty;
|
|
|
|
|
|
public string JsonData { get; set; } = string.Empty;
|
|
|
|
|
|
public string DotnetType { get; set; } = string.Empty;
|
|
|
|
|
|
}
|