IW4M-Admin/SharedLibraryCore/RCon/CommandPrefix.cs
2019-02-01 19:49:25 -06:00

22 lines
632 B
C#

using System;
using System.Collections.Generic;
using System.Text;
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 RConQuery { get; set; }
public string RConGetStatus { get; set; }
public string RConGetInfo { get; set; }
public string RConResponse { get; set; }
}
}