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
+12
View File
@@ -1,6 +1,7 @@
using System;
using System.ComponentModel.DataAnnotations;
using xModels.Base;
using xWebinarService.Constants;
namespace xWebinarService.Models.Entities
{
@@ -32,12 +33,23 @@ namespace xWebinarService.Models.Entities
[Required]
public string OwnerId { get; set; }
/// <summary>
/// Webinar Type ...
/// </summary>
public XWebinarType Type { get; set; }
/// <summary>
/// Creation Time ...
/// </summary>
/// <value></value>
[Required]
public DateTime CreatedOn { get; set; }
/// <summary>
/// Specified Webinar Enabled or not ...
/// </summary>
/// <value></value>
public bool Enabled { get; set; }
}
/// <summary>