mirror of
https://github.com/simtactics/mysimulation.git
synced 2025-03-25 10:49:11 +00:00
15 lines
270 B
C#
15 lines
270 B
C#
|
namespace FSO.Server.Protocol.Electron.Model
|
|||
|
{
|
|||
|
public enum FindLotResponseStatus
|
|||
|
{
|
|||
|
FOUND,
|
|||
|
NO_SUCH_LOT,
|
|||
|
NOT_OPEN,
|
|||
|
NOT_PERMITTED_TO_OPEN,
|
|||
|
CLAIM_FAILED,
|
|||
|
NO_CAPACITY,
|
|||
|
NO_ADMIT,
|
|||
|
UNKNOWN_ERROR
|
|||
|
}
|
|||
|
}
|