2022-01-26 11:32:16 -05:00
|
|
|
|
using System.Collections.Generic;
|
2019-03-31 20:56:31 -04:00
|
|
|
|
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
|
|
|
|
}
|