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