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