Something went wrong on our end
-
Abdelsamad, Mouaz R (UG - SISC) authored0a931a09
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
Enums.cs 633 B
namespace FlightBooking.Service.Data
{
public enum Gender
{
Female = 1,
Male,
Transgender,
Fluid,
PreferNotToSay
}
public enum InternalCode
{
UpdateError = -1,
Failed,
Success,
EntityIsNull,
EntityNotFound,
Mismatch,
InvalidParam,
Incompleted,
ListEmpty,
EntityExist,
Unprocessable,
Unauthorized,
}
public enum SortOrder
{
ASC = 1,
DESC = 2
}
public enum BookingStatus
{
Pending = 1,
Confirmed,
Paid
}
}