using MTWorkHR.Core.Entities.Base; using System; using System.Collections.Generic; #nullable disable namespace MTWorkHR.Core.Entities { public partial class Connection : Entity { public Guid UserId { get; set; } public string SignalrId { get; set; } public DateTime TimeStamp { get; set; } } }