sharp-chat/SharpChat.Common/Events/IEvent.cs
2022-08-30 17:05:29 +02:00

13 lines
290 B
C#

using System;
namespace SharpChat.Events {
public interface IEvent {
long EventId { get; }
DateTimeOffset DateTime { get; }
long UserId { get; }
string ChannelId { get; }
string SessionId { get; }
string ConnectionId { get; }
}
}