Files
moadiran/Shared/DTOs/SentTaxDto.cs

29 lines
925 B
C#
Raw Normal View History

2024-06-09 17:23:57 +03:30
using System;
using System.Collections.Generic;
2024-06-10 17:26:31 +03:30
using System.ComponentModel.DataAnnotations;
2024-06-09 17:23:57 +03:30
using System.ComponentModel.DataAnnotations.Schema;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Shared.DTOs
{
public class SentTaxDto
{
2024-06-10 17:26:31 +03:30
[Display(Name ="شناسه")]
2024-06-09 17:23:57 +03:30
public int ID { get; set; }
2024-06-10 17:26:31 +03:30
[Display(Name = "شناسه صورتحساب")]
2024-06-09 17:23:57 +03:30
public int InvoiceID { get; set; }
2024-06-10 17:26:31 +03:30
[Display(Name = "تاریخ")]
2024-06-09 17:23:57 +03:30
public string Date { get; set; }
2024-06-10 17:26:31 +03:30
[Display(Name = "زمان")]
2024-06-09 17:23:57 +03:30
public string Time { get; set; }
public SentStatus SentStatus { get; set; }
2024-06-12 07:54:43 +03:30
public InvoiceType InvoiceType { get; set; }
2024-06-10 17:26:31 +03:30
[Display(Name = "وضعیت صورتحساب")]
2024-06-09 17:23:57 +03:30
public string msgInvoiceType { get; set; }
2024-06-10 17:26:31 +03:30
[Display(Name = "وضعیت ارسال")]
2024-06-09 17:23:57 +03:30
public string msgSentStatus { get; set; }
}
}