21 lines
		
	
	
		
			888 B
		
	
	
	
		
			C#
		
	
	
			
		
		
	
	
			21 lines
		
	
	
		
			888 B
		
	
	
	
		
			C#
		
	
	
| 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;
 | |
|     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; }
 | |
|     public string LogoUrl { get; set; } = string.Empty;
 | |
| } |