mirror of
https://github.com/azaion/annotations.git
synced 2026-04-22 11:26:31 +00:00
82b3b526a7
file load works, suite can start up
24 lines
388 B
C#
24 lines
388 B
C#
using MessagePack;
|
|
|
|
namespace Azaion.CommonSecurity.DTO.Commands;
|
|
|
|
[MessagePackObject]
|
|
public class FileCommand
|
|
{
|
|
[Key("CommandType")]
|
|
public CommandType CommandType { get; set; }
|
|
|
|
[Key("Filename")]
|
|
public string Filename { get; set; }
|
|
|
|
[Key("Data")]
|
|
public byte[] Data { get; set; }
|
|
|
|
}
|
|
|
|
public enum CommandType
|
|
{
|
|
None = 0,
|
|
Inference = 1,
|
|
Load = 2
|
|
} |