PIbd-21 Potapov N.S. LabWork02 #2

Closed
ns.potapov wants to merge 15 commits from LabWork02 into LabWork01
Showing only changes of commit d88702a821 - Show all commits

View File

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