You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
384 B
19 lines
384 B
using Connected.ServiceModel;
|
|
|
|
namespace Connected.Notifications.Events;
|
|
|
|
public enum EventOrigin
|
|
{
|
|
InProcess = 1,
|
|
Remote = 2
|
|
}
|
|
|
|
public sealed class EventServiceArgs : Dto
|
|
{
|
|
public IOperationState? Sender { get; init; }
|
|
public Type Service { get; init; }
|
|
public string? Event { get; init; }
|
|
public EventOrigin Origin { get; init; }
|
|
public object? Arguments { get; init; }
|
|
}
|