narsil/Tanshu.Accounts.Contracts/Data Contracts/Tax.cs
2018-08-24 16:11:33 +05:30

14 lines
363 B
C#

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<Product> ServiceTaxProducts { get; set; }
public List<Product> VatProducts { get; set; }
}
}