12 lines
466 B
C#
12 lines
466 B
C#
namespace NetinaShop.Domain.MartenEntities.Settings;
|
|
|
|
public class ShopSetting
|
|
{
|
|
public string Name { get; set; } = string.Empty;
|
|
public string Description { get; set; } = string.Empty;
|
|
public string Slogan { get; set; } = string.Empty;
|
|
public double LocationLat { get; set; }
|
|
public double LocationLon { get; set; }
|
|
public string Address { get; set; } = string.Empty;
|
|
public string SupportPhoneNumber { get; set; } = string.Empty;
|
|
} |