15 lines
516 B
C#
15 lines
516 B
C#
|
|
namespace CompanyManagment.App.Contracts.FileState;
|
|
|
|
public static class FileStateEnums
|
|
{
|
|
public const int FILE_CLASS_NOT_REGISTERED = 1;
|
|
public const int MANDATE_NOT_REGISTERED = 2;
|
|
public const int NO_DIAGNOSIS_INVITATION_ISSUED = 3;
|
|
public const int NO_DIAGNOSIS_PETITION_ISSUED = 4;
|
|
public const int PROTEST_NOT_REGISTERED = 5;
|
|
public const int NO_DISPUTE_INVITATION_ISSUED = 6;
|
|
public const int NO_DISPUTE_PETITION_ISSUED = 7;
|
|
public const int NO_PETITION_DATE_ISSUED = 8;
|
|
|
|
} |