20 lines
265 B
C#
20 lines
265 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace ProjectAirline.Entities.Enums;
|
|
|
|
[Flags]
|
|
public enum TicketStatus
|
|
{
|
|
None = 0,
|
|
|
|
Paid = 1,
|
|
|
|
Canceled = 2,
|
|
|
|
Refunded = 4
|
|
}
|