You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

UserConnection.cs 437B

123456789101112131415161718
  1. using System.Diagnostics.CodeAnalysis;
  2. namespace Diligent.WebAPI.Host.Hubs
  3. {
  4. [ExcludeFromCodeCoverage]
  5. public class UserStatus
  6. {
  7. public string UserId { get; set; }
  8. public string Mode { get; set; }
  9. }
  10. [ExcludeFromCodeCoverage]
  11. public class UserConnection : UserStatus
  12. {
  13. public string Username { get; set; }
  14. // RoomId in hub
  15. public string RoomId { get; set; }
  16. }
  17. }