Files
moadiran/Shared/DTOs/SentTaxDto.cs
mmrbnjd 2db5daa9b8 ...
2024-06-10 17:26:31 +03:30

28 lines
872 B
C#

using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Shared.DTOs
{
public class SentTaxDto
{
[Display(Name ="شناسه")]
public int ID { get; set; }
[Display(Name = "شناسه صورتحساب")]
public int InvoiceID { get; set; }
[Display(Name = "تاریخ")]
public string Date { get; set; }
[Display(Name = "زمان")]
public string Time { get; set; }
public SentStatus SentStatus { get; set; }
[Display(Name = "وضعیت صورتحساب")]
public string msgInvoiceType { get; set; }
[Display(Name = "وضعیت ارسال")]
public string msgSentStatus { get; set; }
}
}