Api/Netina.Domain/MartenEntities/Settings/ShopSetting.cs

20 lines
832 B
C#
Raw Normal View History

2024-04-16 20:01:34 +03:30
namespace Netina.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;
2024-04-02 11:40:45 +03:30
public string City { get; set; } = string.Empty;
public int CityId { get; set; }
2024-04-02 11:40:45 +03:30
public string Province { get; set; } = string.Empty;
public int ProvinceId { get; set; }
public double LocationLat { get; set; }
public double LocationLon { get; set; }
public string ENamad { get; set; } = string.Empty;
public string Address { get; set; } = string.Empty;
public string SupportPhoneNumber { get; set; } = string.Empty;
public double TaxesFee { get; set; }
public double ServiceFee { get; set; }
public bool ServiceIsPercent { get; set; }
}