mirror of
https://github.com/RaidMax/IW4M-Admin.git
synced 2025-06-07 21:58:06 -05:00
finish refactor of penalty information/profile optimize pull penalty query start impl of quick message mapping
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; }
|
|
}
|
|
}
|