16 lines
293 B
C#
16 lines
293 B
C#
using System.ComponentModel;
|
|
|
|
namespace Indotalent.Data.Enums;
|
|
|
|
public enum PurchaseReturnStatus
|
|
{
|
|
[Description("Draft")]
|
|
Draft = 0,
|
|
[Description("Cancelled")]
|
|
Cancelled = 1,
|
|
[Description("Confirmed")]
|
|
Confirmed = 2,
|
|
[Description("Archived")]
|
|
Archived = 3
|
|
}
|