Connection.cs 335 B

12345678910111213141516
  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 Connection : Entity
  8. {
  9. public Guid UserId { get; set; }
  10. public string SignalrId { get; set; }
  11. public DateTime TimeStamp { get; set; }
  12. }
  13. }