Files
parr_api/PARR.EsppApi/Constants/EsppOperationsEnum.cs

29 lines
618 B
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

namespace PARR.EsppApi.Constants
{
/// <summary>
/// Операции в ЕСПП
/// </summary>
internal enum EsppOperationsEnum
{
/// <summary>
/// Списать трудозатраты (ТНК)
/// </summary>
AddMTNK,
/// <summary>
/// Получить список нарядов
/// </summary>
GetTaskList,
/// <summary>
/// Получить наряд
/// </summary>
GetTask,
/// <summary>
/// Сохранить наряд
/// </summary>
SaveTask
}
}