add support for XWebinarGroupEntity and it's InMemory Repository and also Register it's required Services and usage in WebinarHub ...

This commit is contained in:
2025-11-28 07:53:17 +03:30
parent a3496e601b
commit c1cc975fcb
6 changed files with 184 additions and 10 deletions
+13
View File
@@ -0,0 +1,13 @@
using System;
using System.Collections.Generic;
using xModels.Base;
using xPushService.Base;
namespace xWebinarService.Models.Entities
{
public class XWebinarGroupEntity : XBaseGuidIDEntity
{
public Guid WebinarId { get; set; }
public List<XHubConnectionDto> Connections { get; set; } = new List<XHubConnectionDto>();
}
}