phronCare/Domain/Constants/DeliveryNoteItemOriginType.cs

11 lines
192 B
C#
Raw Normal View History

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