13 lines
184 B
C#
13 lines
184 B
C#
namespace Documents.Models
|
|
{
|
|
public enum DocumentType
|
|
{
|
|
Quote,
|
|
Expedition,
|
|
DeliveryNote,
|
|
Invoice,
|
|
Order,
|
|
Certificate
|
|
}
|
|
}
|