All checks were successful
CI/CD Pipeline / Build and Deploy with Docker Compose (pull_request) Successful in 6m17s
Closes #13
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
|
|
}
|
|
}
|