IW4M-Admin/SharedLibraryCore/Configuration/QuickMessageConfiguration.cs

11 lines
281 B
C#
Raw Permalink Normal View History

2022-01-26 11:32:16 -05:00
using System.Collections.Generic;
using static SharedLibraryCore.Server;
namespace SharedLibraryCore.Configuration
{
public class QuickMessageConfiguration
{
public Game Game { get; set; }
public Dictionary<string, string> Messages { get; set; }
}
2022-01-26 11:32:16 -05:00
}