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

20 lines
836 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 string City { get; set; } = string.Empty;
public int CityId { get; set; }
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; }
}