phronCare/Domain/Entities/EDeliveryNote.cs

32 lines
791 B
C#

namespace Domain.Entities
{
public class EDeliveryNote
{
public int Id { get; set; }
public string Deliverynotenumber { get; set; } = null!;
public int? QuoteId { get; set; }
public int? SalesinvoiceId { get; set; }
public DateTime Issuedate { get; set; }
public int CustomerId { get; set; }
public string Status { get; set; } = null!;
public string? Observations { get; set; }
public string? ExtrainfoJson { get; set; }
public int Printcount { get; set; }
public DateTime Createdat { get; set; }
public DateTime? Modifiedat { get; set; }
public virtual ICollection<EDeliveryNoteDetail> PhSDeliveryNoteDetails { get; set; } = new List<EDeliveryNoteDetail>();
}
}