This commit is contained in:
mmrbnjd
2024-10-16 23:36:52 +03:30
parent 2a2de590da
commit ac11c8dcd6
9 changed files with 124 additions and 14 deletions

View File

@@ -0,0 +1,24 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Shared.DTOs
{
public class EconomicCodeModelDto
{
public string NameTrade { get; set; }
public string TaxpayerStatus { get; set; }
public string TaxpayerType { get; set; }
public string PostalcodeTaxpayer { get; set; }
public string AddressTaxpayer { get; set; }
public string NationalId { get; set; }
}
}

View File

@@ -0,0 +1,19 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Shared.DTOs
{
public class FiscalInformationModelDto
{
public string NameTrade { get; set; }
public int FiscalStatus { get; set; }
public string EconomicCode { get; set; }
public string NationalId { get; set; }
}
}