IW4M-Admin/SharedLibraryCore/Configuration/QuickMessageConfiguration.cs

14 lines
315 B
C#
Raw Normal View History

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