using System; using System.Collections.Generic; namespace Tanshu.Accounts.Entities { public class Tax { public Guid TaxID { get; set; } public string Name { get; set; } public decimal Rate { get; set; } public List ServiceTaxProducts { get; set; } public List VatProducts { get; set; } } }