diff --git a/DumpCleaner/Models/Location.cs b/DumpCleaner/Models/Location.cs index 55ff395..d4c7d8f 100644 --- a/DumpCleaner/Models/Location.cs +++ b/DumpCleaner/Models/Location.cs @@ -2,6 +2,7 @@ public class Location { public bool Enabled { get; set; } + public bool EnabledCoop { get; set; } public bool Locked { get; set; } public bool Insurance { get; set; } public bool SafeLocation { get; set; } @@ -10,7 +11,10 @@ public class Location public object Scene { get; set; } public decimal Area { get; set; } public int RequiredPlayerLevel { get; set; } + public int PmcMaxPlayersInGroup { get; set; } + public int ScavMaxPlayersInGroup { get; set; } public int MinPlayers { get; set; } + public int MaxCoopGroup { get; set; } public int MaxPlayers { get; set; } public int exit_count { get; set; } public int exit_access_time { get; set; } @@ -23,7 +27,8 @@ public class Location public List limits { get; set; } public int AveragePlayTime { get; set; } public int AveragePlayerLevel { get; set; } - public int escape_time_limit { get; set; } + public int EscapeTimeLimit { get; set; } + public int EscapeTimeLimitCoop { get; set; } public string Rules { get; set; } public bool IsSecret { get; set; } public List doors { get; set; }