7 lines
177 B
C#
7 lines
177 B
C#
|
namespace SharpChat.Events {
|
|||
|
public static class IEventExtensions {
|
|||
|
public static bool IsBroadcast(this IEvent evt)
|
|||
|
=> evt.ChannelId == null;
|
|||
|
}
|
|||
|
}
|