system-praktyk-api/src/InternshipSystem.Core/ValueObject/DocumentState.cs

16 lines
298 B
C#

namespace InternshipSystem.Core
{
public enum DocumentState
{
// Oczekujaca
NotSubmitted,
// Oczekuje na akceptacje
Submitted,
// Zaakceptowana
Accepted,
// Odrzucona
Rejected,
// Archiwalna
Archival
}
}