-
-
Notifications
You must be signed in to change notification settings - Fork 44
sharedlibrarycoreevents CoreEvent
RaidMax edited this page May 21, 2023
·
1 revision
flowchart LR
classDef interfaceStyle stroke-dasharray: 5 5;
classDef abstractStyle stroke-width:4px
subgraph SharedLibraryCore.Events
SharedLibraryCore.Events.CoreEvent[[CoreEvent]]
class SharedLibraryCore.Events.CoreEvent abstractStyle;
end
Type | Name | Methods |
---|---|---|
Nullable <Guid > |
CorrelationId |
get, init |
DateTimeOffset |
CreatedAt |
get |
Guid |
Id |
get |
Nullable <DateTimeOffset > |
ProcessedAt |
get, set |
object |
Source |
get, init |
protected CoreEvent()
public Guid Id { get; }
public Nullable<Guid> CorrelationId { get; init; }
public object Source { get; init; }
public DateTimeOffset CreatedAt { get; }
public Nullable<DateTimeOffset> ProcessedAt { get; set; }
Generated with ModularDoc