Files
qhmes/yy-admin-master/YY.Admin.Core/Core/Events/RemoteCommandReceivedEvent.cs

14 lines
297 B
C#

using Prism.Events;
namespace YY.Admin.Core.Events;
public sealed class RemoteCommandPayload
{
public string DeviceId { get; set; } = string.Empty;
public string CommandJson { get; set; } = string.Empty;
}
public class RemoteCommandReceivedEvent : PubSubEvent<RemoteCommandPayload>
{
}