narsil/Tanshu.Accounts.Contracts/Data Contracts/Tax.cs

14 lines
363 B
C#
Raw Permalink Normal View History

2018-08-24 10:41:33 +00:00
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; }
}
}