PIbd-23-Kondratev-N.D.-Gaso.../GasolineTanker/ProjectGasolineTanker/MovementStratg/Status.cs

16 lines
258 B
C#
Raw Normal View History

2023-11-14 00:52:16 +04:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
2024-10-03 01:40:53 +04:00
namespace ProjectGasolineTanker.MovementStratg
2023-11-14 00:52:16 +04:00
{
2024-10-03 01:16:11 +04:00
public enum Status
2023-11-14 00:52:16 +04:00
{
2024-10-03 01:16:11 +04:00
NotInit,
InProgress,
Finish
2023-11-14 00:52:16 +04:00
}
2024-10-03 01:40:53 +04:00
}