This commit is contained in:
mmrbnjd
2024-06-26 17:10:29 +03:30
parent df6d5905ac
commit 478456c03f
11 changed files with 247 additions and 7 deletions

26
Shared/DTOs/stuffDto.cs Normal file
View File

@@ -0,0 +1,26 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using static System.Runtime.InteropServices.JavaScript.JSType;
namespace Shared.DTOs
{
public class stuffDto
{
//شناسه کالا/خدمت
public UInt64? ID { get; set; }
// نوع شناسه کالا/خدمت
public string? Type { get; set; }
//مشمول یا معاف بودن
public string? TaxableOrFree { get; set; }
//نرخ ارزش افزوده
public int? Vat { get; set; }
//// نرخ ارزش افزوده مبادی گمرکی
//public int? VatCustomPurposes { get; set; }
//شرح شناسه کالا/خدمت
public string? DescriptionOfID { get; set; }
}
}