IW4M-Admin/Integrations/Cod/SecureRcon/SecureCommand.cs
2023-07-28 15:34:27 -05:00

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; }
}