Browse Source

Remove `public` keyword from `interface`.

pull/21716/head
maliming 1 year ago
parent
commit
deba424346
No known key found for this signature in database GPG Key ID: A646B9CB645ECEA4
  1. 10
      framework/src/Volo.Abp.EventBus.Abstractions/Volo/Abp/EventBus/Distributed/IIncomingEventInfo.cs
  2. 8
      framework/src/Volo.Abp.EventBus.Abstractions/Volo/Abp/EventBus/Distributed/IOutgoingEventInfo.cs

10
framework/src/Volo.Abp.EventBus.Abstractions/Volo/Abp/EventBus/Distributed/IIncomingEventInfo.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; }
}

8
framework/src/Volo.Abp.EventBus.Abstractions/Volo/Abp/EventBus/Distributed/IOutgoingEventInfo.cs

@ -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; }
}

Loading…
Cancel
Save