15 lines
224 B
C#
15 lines
224 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace Models
|
|
{
|
|
public enum ComplaintStatus
|
|
{
|
|
FILED,
|
|
UNDER_REVIEW,
|
|
SOLVED,
|
|
ARCHIVED
|
|
}
|
|
} |