mirror of
https://github.com/RaidMax/IW4M-Admin.git
synced 2025-06-07 21:58:06 -05:00
14 lines
240 B
C#
14 lines
240 B
C#
using ProtoBuf;
|
|
|
|
namespace Integrations.Cod.SecureRcon;
|
|
|
|
[ProtoContract]
|
|
public class SecureCommand
|
|
{
|
|
[ProtoMember(1)]
|
|
public byte[] SecMessage { get; set; }
|
|
|
|
[ProtoMember(2)]
|
|
public byte[] Signature { get; set; }
|
|
}
|