IW4M-Admin/WebfrontCore/ViewModels/CommunityInfo.cs

12 lines
369 B
C#
Raw Normal View History

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; }
}
}