Files
moadiran/Shared/DTOs/FiscalInformationModelDto.cs

20 lines
392 B
C#
Raw Permalink Normal View History

2024-10-16 23:36:52 +03:30
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; }
}
}