implement Webinar and WebinarSubscriber Entity and Dto (s) and Data Requirements ...

This commit is contained in:
2026-07-24 19:46:35 +03:30
parent cf6568e089
commit d2d3ac90b6
82 changed files with 1466 additions and 4889 deletions
+20
View File
@@ -0,0 +1,20 @@
using System;
using System.ComponentModel.DataAnnotations;
using xModels.Base;
namespace xWebinarService.Models.Entities
{
/// <summary>
/// Webinar Subscriber ...
/// </summary>
public class XWebinarSubscriber : XBaseIntIDEntity
{
[Required]
public string SubscriberId { get; set; }
[Required]
public Guid WebinarId { get; set; }
public DateTime SubscribedOn { get; set; }
}
}