11 lines
192 B
C#
11 lines
192 B
C#
|
|
namespace Domain.Constants
|
|||
|
|
{
|
|||
|
|
public enum DeliveryNoteItemOriginType : byte
|
|||
|
|
{
|
|||
|
|
QuoteDetail = 1,
|
|||
|
|
SalesProduct = 2,
|
|||
|
|
StockProduct = 3,
|
|||
|
|
Manual = 4
|
|||
|
|
}
|
|||
|
|
}
|