initial commit
This commit is contained in:
@@ -0,0 +1,17 @@
|
||||
using System.ComponentModel;
|
||||
|
||||
namespace Indotalent.Data.Enums;
|
||||
|
||||
public enum BookingStatus
|
||||
{
|
||||
[Description("Cancelled")]
|
||||
Cancelled = 0,
|
||||
[Description("Draft")]
|
||||
Draft = 1,
|
||||
[Description("Confirmed")]
|
||||
Confirmed = 2,
|
||||
[Description("OnProgress")]
|
||||
OnProgress = 3,
|
||||
[Description("Done")]
|
||||
Done = 4
|
||||
}
|
||||
Reference in New Issue
Block a user