14 lines
297 B
C#
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>
|
|
{
|
|
}
|