Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
ExpectedEvent.cs
1using Microsoft.Maui.Controls.Shapes;
4
6{
7
11 internal class ExpectedEvent(Type eventType, DateTime before, Predicate<NotificationEvent>? predicate = null)
12 {
13 public Type EventType { get; } = eventType;
14 public DateTime Before { get; } = before;
15 public Predicate<NotificationEvent>? Predicate { get; } = predicate;
16 }
17
18}
abstract class NotificationEvent()
Abstract base class of notification events.
EventType
Type of event.
Definition: EventType.cs:7