add some new implementation of Webinar Hub ...
This commit is contained in:
@@ -0,0 +1,37 @@
|
||||
using xExceptions.Attributes;
|
||||
|
||||
namespace xWebinarService.Constants
|
||||
{
|
||||
public enum XWebinarHubAction
|
||||
{
|
||||
/// <summary>
|
||||
/// When a Webinar is Available to Join ...
|
||||
/// </summary>
|
||||
[StringValue("WebinarOpened")]
|
||||
WebinarOpened,
|
||||
|
||||
/// <summary>
|
||||
/// When a Webinar Closed ...
|
||||
/// </summary>
|
||||
[StringValue("WebinarClosed")]
|
||||
WebinarClosed,
|
||||
|
||||
/// <summary>
|
||||
/// When a Viewer is Joined to Webinar ...
|
||||
/// </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,
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user