mirror of
https://github.com/azaion/annotations.git
synced 2026-04-22 22:16:30 +00:00
d92da6afa4
notifying client of AI model conversion
8 lines
157 B
C#
8 lines
157 B
C#
using MediatR;
|
|
|
|
namespace Azaion.Common.Events;
|
|
|
|
public class LoadErrorEvent(string error) : INotification
|
|
{
|
|
public string Error { get; set; } = error;
|
|
} |