From deba424346c08df1e2e787a66d67f6607ca8eef2 Mon Sep 17 00:00:00 2001 From: maliming Date: Tue, 24 Dec 2024 15:46:26 +0800 Subject: [PATCH] Remove `public` keyword from `interface`. --- .../Abp/EventBus/Distributed/IIncomingEventInfo.cs | 10 +++++----- .../Abp/EventBus/Distributed/IOutgoingEventInfo.cs | 8 ++++---- 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/framework/src/Volo.Abp.EventBus.Abstractions/Volo/Abp/EventBus/Distributed/IIncomingEventInfo.cs b/framework/src/Volo.Abp.EventBus.Abstractions/Volo/Abp/EventBus/Distributed/IIncomingEventInfo.cs index 7f1f1be640..e52325b71f 100644 --- a/framework/src/Volo.Abp.EventBus.Abstractions/Volo/Abp/EventBus/Distributed/IIncomingEventInfo.cs +++ b/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; } } diff --git a/framework/src/Volo.Abp.EventBus.Abstractions/Volo/Abp/EventBus/Distributed/IOutgoingEventInfo.cs b/framework/src/Volo.Abp.EventBus.Abstractions/Volo/Abp/EventBus/Distributed/IOutgoingEventInfo.cs index 9fe4d35eb5..58dd4a9713 100644 --- a/framework/src/Volo.Abp.EventBus.Abstractions/Volo/Abp/EventBus/Distributed/IOutgoingEventInfo.cs +++ b/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; } }