12 lines
369 B
C#
12 lines
369 B
C#
using System.Collections.Generic;
|
|
using SharedLibraryCore.Configuration;
|
|
|
|
namespace WebfrontCore.ViewModels
|
|
{
|
|
public class CommunityInfo
|
|
{
|
|
public string[] GlobalRules { get; set; }
|
|
public Dictionary<(string, long), string[]> ServerRules { get; set; }
|
|
public CommunityInformationConfiguration CommunityInformation { get; set; }
|
|
}
|
|
} |