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