15 lines
278 B
C#
15 lines
278 B
C#
using xExceptions.Attributes;
|
|
|
|
namespace xWebinarService.Constants
|
|
{
|
|
/// <summary>
|
|
/// Webinar Type ...
|
|
/// </summary>
|
|
public enum XWebinarType
|
|
{
|
|
[StringValue("Public")]
|
|
Public = 0,
|
|
[StringValue("Private")]
|
|
Private = 1
|
|
}
|
|
} |