1
0
mirror of https://github.com/RaidMax/IW4M-Admin.git synced 2025-06-10 15:20:48 -05:00

fix issue on about page with duplicate server names or inactive servers

This commit is contained in:
RaidMax
2021-10-19 20:02:31 -05:00
parent ad14a150e2
commit bbab849224
3 changed files with 14 additions and 8 deletions

View File

@ -6,7 +6,7 @@ namespace WebfrontCore.ViewModels
public class CommunityInfo
{
public string[] GlobalRules { get; set; }
public Dictionary<string, string[]> ServerRules { get; set; }
public Dictionary<(string, long), string[]> ServerRules { get; set; }
public CommunityInformationConfiguration CommunityInformation { get; set; }
}
}