19 lines
371 B
C#
Raw Normal View History

2023-11-25 12:44:21 +04:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ContainerShip.MovementStrategy
{
2023-12-16 11:18:38 +04:00
/// <summary>
/// Статус выполнения операции перемещения
/// </summary>
2023-11-25 12:44:21 +04:00
public enum Status
{
NotInit,
InProgress,
Finish
}
}