Files
moadiran/Shared/DTOs/SentTaxDto.cs
mmrbnjd 82bcfc1ffe ...
2024-06-09 17:23:57 +03:30

21 lines
551 B
C#

using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations.Schema;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Shared.DTOs
{
public class SentTaxDto
{
public int ID { get; set; }
public int InvoiceID { get; set; }
public string Date { get; set; }
public string Time { get; set; }
public SentStatus SentStatus { get; set; }
public string msgInvoiceType { get; set; }
public string msgSentStatus { get; set; }
}
}