Last Works on Webinar ...

This commit is contained in:
2025-11-05 05:07:24 +03:30
parent 330201023b
commit 0b0083a479
12 changed files with 1380 additions and 19 deletions
+13
View File
@@ -1,3 +1,16 @@
using xExceptions.Attributes;
namespace xWebinarService.Constants {
public class xWebinarServiceConstants { }
/// <summary>
/// Webinar Type ...
/// </summary>
public enum XWebinarType
{
[StringValue("Public")]
Public = 0,
[StringValue("Private")]
Private = 1
}
}