17 lines
372 B
C#
17 lines
372 B
C#
namespace Models.Model.External;
|
|
|
|
//[MessagePackObject]
|
|
public class CommunicationObject
|
|
{
|
|
//[Key(0)]
|
|
public CommunicationCommand Command { get; set; }
|
|
|
|
//[Key(1)]
|
|
public string? SearchTerm { get; set; } = "";
|
|
|
|
//[Key(2)]
|
|
public string? Variable { get; set; } = "";
|
|
|
|
//[Key(3)]
|
|
public string? VariableValue { get; set; } = "";
|
|
} |