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 Connections { get; set; } = new List(); } }