Files
studenthousedashboard/StudentHouseDashboard/Models/ComplaintStatus.cs
2023-06-09 11:51:42 +02:00

16 lines
302 B
C#

using System.ComponentModel;
namespace Models
{
public enum ComplaintStatus
{
[Description("Filed")]
FILED,
[Description("Under review")]
UNDER_REVIEW,
[Description("Solved")]
SOLVED,
[Description("Archived")]
ARCHIVED
}
}