mirror of
https://github.com/rjNemo/ticket_manager
synced 2026-06-06 08:46:39 +00:00
19 lines
194 B
C#
19 lines
194 B
C#
namespace TicketManager
|
|
{
|
|
public enum Category
|
|
{
|
|
Undefined = 0,
|
|
Product = 1,
|
|
Tech = 2,
|
|
Design = 3,
|
|
Marketing = 4,
|
|
Test = 5
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|