Add Support for Hub Actions Implementation ...
This commit is contained in:
@@ -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
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user