IW4M-Admin/Data/Models/Reference.cs

30 lines
517 B
C#
Raw Permalink Normal View History

namespace Data.Models
{
public class Reference
{
public enum Game
{
COD = -1,
UKN = 0,
IW3 = 1,
IW4 = 2,
IW5 = 3,
IW6 = 4,
T4 = 5,
T5 = 6,
T6 = 7,
2021-04-16 14:35:51 -04:00
T7 = 8,
2021-06-03 11:51:03 -04:00
SHG1 = 9,
2022-06-07 13:10:39 -04:00
CSGO = 10,
2023-09-02 16:35:40 -04:00
H1 = 11,
2023-09-02 16:45:03 -04:00
L4D2 = 12,
}
public enum ConnectionType
{
Connect,
Disconnect
}
}
2022-06-07 13:10:39 -04:00
}