21 lines
551 B
C#
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; }
|
|
}
|
|
}
|