15 lines
316 B
C#
15 lines
316 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; }
|
|||
|
}
|
|||
|
}
|