10 lines
235 B
C#
10 lines
235 B
C#
|
|
namespace CompanyManagment.App.Contracts.FileAlert;
|
|
|
|
public static class FileAlertEnums
|
|
{
|
|
public const int MAX_2_DAYSEXTENSION = 5;
|
|
public const int MAX_5_DAYSEXTENSION = 2;
|
|
public const int MAX_10_DAYSEXTENSION = 1;
|
|
|
|
} |