HubConnection.cs 385 B

1234567891011121314151617
  1. using MTWorkHR.Core.Entities.Base;
  2. using System;
  3. using System.Collections.Generic;
  4. #nullable disable
  5. namespace MTWorkHR.Core.Entities
  6. {
  7. public partial class HubConnection : Entity
  8. {
  9. public string UserId { get; set; }
  10. public string UserName { get; set; }
  11. public string SignalrId { get; set; }
  12. public DateTime TimeStamp { get; set; }
  13. }
  14. }