2023-10-12 18:32:33 +04:00

16 lines
256 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ProjectTrolleybus.MovementStrategy
{
public enum Status
{
NotInit,
InProgress,
Finish
}
}