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
+3 -3
View File
@@ -1,20 +1,20 @@
using System;
using xModels.Base;
using xModels.Dtos;
using xWebinarService.Constants;
namespace xWebinarService.Models.Dtos
{
public class XWebinarDto : XBaseDto
{
public Guid Id { get; set; }
public XResourceDto Title { get; set; }
public XResourceDto Description { get; set; }
public string OwnerId { get; set; }
public XPersonDto Owner { get; set; }
public XWebinarType Type { get; set; }
public DateTime CreatedOn { get; set; }
public bool Enabled { get; set; }
}
public class XWebinarSubscriberDto : XBaseDto