using Azaion.Common.DTO; using MediatR; namespace Azaion.Common.Services.Inference; public class InferenceDataEvent(RemoteCommand command) : INotification { public RemoteCommand Command { get; set; } = command; }