RSE/Models/Model/External/CommunicationObject.cs
2024-11-24 12:40:51 +01:00

13 lines
239 B
C#

using MessagePack;
namespace Models.Model.External;
[MessagePackObject]
public class CommunicationObject
{
[Key(0)]
public CommunicationCommand Command { get; set; }
[Key(1)]
public string? SearchTerm { get; set; }
}