14 lines
363 B
C#
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; }
|
|||
|
}
|
|||
|
}
|