mirror of
https://github.com/RaidMax/IW4M-Admin.git
synced 2025-06-08 06:08:20 -05:00
23 lines
808 B
C#
23 lines
808 B
C#
namespace SharedLibraryCore.RCon
|
|
{
|
|
public class CommandPrefix
|
|
{
|
|
public string Tell { get; set; }
|
|
public string Say { get; set; }
|
|
public string Set { get; set; }
|
|
public string Kick { get; set; }
|
|
public string Ban { get; set; }
|
|
public string Unban { get; set; }
|
|
public string TempBan { get; set; }
|
|
public string RConCommand { get; set; }
|
|
public string RConGetDvar { get; set; }
|
|
public string RConSetDvar { get; set; }
|
|
public string RConGetStatus { get; set; }
|
|
public string RConGetInfo { get; set; }
|
|
public string RConResponse { get; set; }
|
|
public string RconGetInfoResponseHeader { get; set; }
|
|
public string Mute { get; set; }
|
|
public string Unmute { get; set; }
|
|
}
|
|
}
|