phronCare/Domain/Dtos/Sales/SalesFiscalDocumentAssociationDto.cs

16 lines
583 B
C#
Raw Normal View History

namespace Domain.Dtos.Sales
{
public class SalesFiscalDocumentAssociationDto
{
public int Id { get; set; }
public int SalesFiscalDocumentId { get; set; }
public int? AssociatedSalesDocumentId { get; set; }
public int AssociatedVoucherType { get; set; }
public short AssociatedPointOfSale { get; set; }
public int AssociatedVoucherNumber { get; set; }
public string? AssociatedVoucherCuit { get; set; }
public DateTime? AssociatedVoucherDate { get; set; }
public DateTime Createdat { get; set; }
}
}