Files
studenthousedashboard/StudentHouseDashboard/Models/ComplaintSeverity.cs
2023-06-09 02:57:45 +02:00

20 lines
366 B
C#

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;
namespace Models
{
public enum ComplaintSeverity
{
[Description("Low")]
LOW,
[Description("Normal")]
NORMAL,
[Description("High")]
HIGH,
[Description("Urgent")]
URGENT
}
}