mirror of
https://github.com/azaion/annotations.git
synced 2026-04-23 00:36:31 +00:00
067f02cc63
rework AIAvailabilityStatus events to mediatr
10 lines
219 B
C#
10 lines
219 B
C#
using Azaion.Common.DTO;
|
|
using MediatR;
|
|
|
|
namespace Azaion.Common.Services.Inference;
|
|
|
|
public class InferenceDataEvent(RemoteCommand command) : INotification
|
|
{
|
|
public RemoteCommand Command { get; set; } = command;
|
|
}
|