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

20 lines
388 B
C#

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