phronCare/Domain/Constants/DeliveryNoteItemOriginType.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

11 lines
192 B
C#

namespace Domain.Constants
{
public enum DeliveryNoteItemOriginType : byte
{
QuoteDetail = 1,
SalesProduct = 2,
StockProduct = 3,
Manual = 4
}
}