This commit is contained in:
mmrbnjd
2024-06-10 17:26:31 +03:30
parent 82bcfc1ffe
commit 2db5daa9b8
14 changed files with 953 additions and 469 deletions

View File

@@ -1,5 +1,6 @@
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
using System.Linq;
using System.Text;
@@ -9,12 +10,18 @@ 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; }
}
}