Add Support for Hub Actions Implementation ...

This commit is contained in:
2025-11-16 17:29:45 +03:30
parent a9d451b3ae
commit 3c09233329
4 changed files with 178 additions and 13 deletions
+16 -2
View File
@@ -2,6 +2,9 @@ using xExceptions.Attributes;
namespace xWebinarService.Constants
{
/// <summary>
/// Webinar Connection Hub Actions ...
/// </summary>
public enum XWebinarHubAction
{
/// <summary>
@@ -21,17 +24,28 @@ namespace xWebinarService.Constants
/// </summary>
[StringValue("ViewerJoined")]
ViewerJoined,
/// <summary>
/// When a Webinar Subscriber Leaved a Webinar ...
/// </summary>
[StringValue("ViewerLeaved")]
ViewerLeaved,
/// <summary>
/// Send a Message to Webinar ...
/// </summary>
[StringValue("Message")]
Message,
}
/// <summary>
/// Entity Hub Actions ...
/// </summary>
public enum XWebinarEntityHubAction
{
[StringValue("Subscribed")]
Subscribed,
[StringValue("Unsubscribe")]
Unsubscribe
}
}