13 lines
349 B
C#
13 lines
349 B
C#
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>();
|
|
}
|
|
} |