19 lines
272 B
V
19 lines
272 B
V
module ticket
|
|
|
|
// TicketStatus defines the status of a support ticket
|
|
pub enum TicketStatus {
|
|
open
|
|
in_progress
|
|
waiting_for_customer
|
|
resolved
|
|
closed
|
|
}
|
|
|
|
// TicketPriority defines the priority of a support ticket
|
|
pub enum TicketPriority {
|
|
low
|
|
medium
|
|
high
|
|
critical
|
|
}
|