2021-10-09 22:11:47 -04:00
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using SharedLibraryCore.Configuration;
|
|
|
|
|
|
|
|
|
|
namespace WebfrontCore.ViewModels
|
|
|
|
|
{
|
|
|
|
|
public class CommunityInfo
|
|
|
|
|
{
|
|
|
|
|
public string[] GlobalRules { get; set; }
|
2021-10-19 21:02:31 -04:00
|
|
|
|
public Dictionary<(string, long), string[]> ServerRules { get; set; }
|
2021-10-09 22:11:47 -04:00
|
|
|
|
public CommunityInformationConfiguration CommunityInformation { get; set; }
|
|
|
|
|
}
|
|
|
|
|
}
|