phronCare/Domain/Entities/EDeliveryNoteDetail.cs
leandro 2dd8f5b1c7
All checks were successful
CI/CD Pipeline / Build and Deploy with Docker Compose (pull_request) Successful in 6m17s
feat(sales): agregar entidades domain para delivery note
Closes #13
2026-03-16 22:08:04 -03:00

33 lines
755 B
C#

namespace Domain.Entities
{
public class EDeliveryNoteDetail
{
public int Id { get; set; }
public int DeliverynoteId { get; set; }
public int LineNumber { get; set; }
public byte OriginType { get; set; }
public int? OriginId { get; set; }
public int? QuoteDetailId { get; set; }
public string Description { get; set; } = null!;
public decimal Quantity { get; set; }
public string Notes { get; set; } = null!;
public DateTime Createdat { get; set; }
public DateTime? Modifiedat { get; set; }
//public virtual PhSDeliveryNote Deliverynote { get; set; } = null!;
//public virtual PhSQuoteDetail? QuoteDetail { get; set; }
}
}