26 lines
941 B
C#
26 lines
941 B
C#
namespace Back.Data.Models
|
|
{
|
|
public class stuff
|
|
{
|
|
public int ID { get; set; }
|
|
//شناسه کالا/خدمت
|
|
public string? CID { get; set; }
|
|
// نوع شناسه کالا/خدمت
|
|
public string? sType { get; set; }
|
|
//تاریخ ثبت
|
|
public string? sDate { get; set; }
|
|
public string? RunDate { get; set; }
|
|
public string? ExpirationDate { get; set; }
|
|
//عمومی یا خاص بودن شناسه
|
|
public string? SpecialOrGeneral { get; set; }
|
|
//مشمول یا معاف بودن
|
|
public string? TaxableOrFree { get; set; }
|
|
//نرخ ارزش افزوده
|
|
public string? Vat { get; set; }
|
|
// نرخ ارزش افزوده مبادی گمرکی
|
|
public string? VatCustomPurposes { get; set; }
|
|
//شرح شناسه کالا/خدمت
|
|
public string? DescriptionOfID { get; set; }
|
|
}
|
|
}
|