2023-11-14 14:11:54 +04:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
2023-11-25 14:55:27 +04:00
|
|
|
|
namespace DoubleDeckerbus.Move_Strategy
|
2023-11-14 14:11:54 +04:00
|
|
|
|
{
|
|
|
|
|
public enum Status
|
|
|
|
|
{
|
|
|
|
|
NotInit,
|
|
|
|
|
InProgress,
|
|
|
|
|
Finish
|
|
|
|
|
}
|
2023-11-25 15:23:25 +04:00
|
|
|
|
}
|