IW4M-Admin/Integrations/Cod/SecureRcon/SecureCommand.cs

14 lines
240 B
C#
Raw Normal View History

2023-07-28 16:34:27 -04:00
using ProtoBuf;
namespace Integrations.Cod.SecureRcon;
[ProtoContract]
public class SecureCommand
{
[ProtoMember(1)]
public byte[] SecMessage { get; set; }
[ProtoMember(2)]
public byte[] Signature { get; set; }
}