Browse Source
Remove `public` keyword from `interface`.
pull/21716/head
maliming
1 year ago
No known key found for this signature in database
GPG Key ID: A646B9CB645ECEA4
2 changed files with
9 additions and
9 deletions
-
framework/src/Volo.Abp.EventBus.Abstractions/Volo/Abp/EventBus/Distributed/IIncomingEventInfo.cs
-
framework/src/Volo.Abp.EventBus.Abstractions/Volo/Abp/EventBus/Distributed/IOutgoingEventInfo.cs
|
|
|
@ -5,13 +5,13 @@ namespace Volo.Abp.EventBus.Distributed; |
|
|
|
|
|
|
|
public interface IIncomingEventInfo : IHasExtraProperties |
|
|
|
{ |
|
|
|
public Guid Id { get; } |
|
|
|
Guid Id { get; } |
|
|
|
|
|
|
|
public string MessageId { get; } |
|
|
|
string MessageId { get; } |
|
|
|
|
|
|
|
public string EventName { get; } |
|
|
|
string EventName { get; } |
|
|
|
|
|
|
|
public byte[] EventData { get; } |
|
|
|
byte[] EventData { get; } |
|
|
|
|
|
|
|
public DateTime CreationTime { get; } |
|
|
|
DateTime CreationTime { get; } |
|
|
|
} |
|
|
|
|
|
|
|
@ -5,11 +5,11 @@ namespace Volo.Abp.EventBus.Distributed; |
|
|
|
|
|
|
|
public interface IOutgoingEventInfo : IHasExtraProperties |
|
|
|
{ |
|
|
|
public Guid Id { get; } |
|
|
|
Guid Id { get; } |
|
|
|
|
|
|
|
public string EventName { get; } |
|
|
|
string EventName { get; } |
|
|
|
|
|
|
|
public byte[] EventData { get; } |
|
|
|
byte[] EventData { get; } |
|
|
|
|
|
|
|
public DateTime CreationTime { get; } |
|
|
|
DateTime CreationTime { get; } |
|
|
|
} |
|
|
|
|