IW4M-Admin/SharedLibraryCore/RCon/CommandPrefix.cs

20 lines
723 B
C#
Raw Normal View History

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; }
2019-02-03 21:47:05 -05:00
public string RConCommand { get; set; }
public string RConGetDvar { get; set; }
public string RConSetDvar { get; set; }
2019-02-01 20:49:25 -05:00
public string RConGetStatus { get; set; }
public string RConGetInfo { get; set; }
public string RConResponse { get; set; }
2020-04-18 18:48:49 -04:00
public string RconGetInfoResponseHeader { get; set; }
}
2022-01-26 11:32:16 -05:00
}