10 lines
156 B
C#
10 lines
156 B
C#
namespace InternshipSystem.Core
|
|
{
|
|
public enum DocumentState
|
|
{
|
|
NotSubmitted,
|
|
Submitted,
|
|
Accepted,
|
|
Rejected
|
|
}
|
|
} |