2cceb2f3e7
disable killserver command fix issue with default parser not saving during setup fix issue with unban reason displayed when player is rebanned
14 lines
315 B
C#
14 lines
315 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
using static SharedLibraryCore.Server;
|
|
|
|
namespace SharedLibraryCore.Configuration
|
|
{
|
|
public class QuickMessageConfiguration
|
|
{
|
|
public Game Game { get; set; }
|
|
public Dictionary<string, string> Messages { get; set; }
|
|
}
|
|
}
|