Создание класса, хранящего возможные состояния процесса

перемещения
This commit is contained in:
Софья Якобчук 2023-11-27 21:23:17 +04:00
parent e5c15c66a1
commit 3113f2defd

View File

@ -0,0 +1,18 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Sailboat.MovementStrategy
{
/// <summary>
/// Статус выполнения операции перемещения
/// </summary>
public enum Status
{
NotInit,
InProgress,
Finish
}
}