This commit is contained in:
mmrbnjd
2024-04-30 16:40:05 +03:30
parent 319270d567
commit 827aa36860
8 changed files with 258 additions and 8 deletions

View File

@@ -0,0 +1,16 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Shared.DTOs
{
public class TaxPayerInfoDto
{
public string? EconomicCode { get; set; }
public string? UniqeMemory { get; set; }
public string? PrivateKey { get; set; }
public string? BranchID { get; set; }
}
}