PIbd-23-Kondratev-N.D.-Gaso.../GasolineTanker/ProjectGasolineTanker/Status.cs
2024-10-03 00:16:11 +03:00

15 lines
259 B
C#

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