17 lines
280 B
C#
17 lines
280 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace StandardScene.Model
|
|
{
|
|
public enum VehicleStatus
|
|
{
|
|
Unknown = 0,
|
|
Normal = 1,
|
|
NeedInit = 2,
|
|
Offline = 3,
|
|
}
|
|
}
|