aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/Net/WebSocketMessage.cs
diff options
context:
space:
mode:
authorGreenback <jimcartlidge@yahoo.co.uk>2020-10-09 14:12:41 +0100
committerGreenback <jimcartlidge@yahoo.co.uk>2020-10-09 14:12:41 +0100
commitebe650afa9e622d3f9e53e50b42ea676fdc25e6e (patch)
tree51da5ba142a8243b0d36313ec0e54318132ff3a2 /MediaBrowser.Model/Net/WebSocketMessage.cs
parent8a4f81c9a7a03c6a45a8a9331f71ba06ae0ce521 (diff)
parent10d48b062315581adc4706530bc388d53ff232a4 (diff)
Merge remote-tracking branch 'upstream/master' into NetworkPR2
Diffstat (limited to 'MediaBrowser.Model/Net/WebSocketMessage.cs')
-rw-r--r--MediaBrowser.Model/Net/WebSocketMessage.cs3
1 files changed, 2 insertions, 1 deletions
diff --git a/MediaBrowser.Model/Net/WebSocketMessage.cs b/MediaBrowser.Model/Net/WebSocketMessage.cs
index 660eebeda..bffbbe612 100644
--- a/MediaBrowser.Model/Net/WebSocketMessage.cs
+++ b/MediaBrowser.Model/Net/WebSocketMessage.cs
@@ -2,6 +2,7 @@
#pragma warning disable CS1591
using System;
+using MediaBrowser.Model.Session;
namespace MediaBrowser.Model.Net
{
@@ -15,7 +16,7 @@ namespace MediaBrowser.Model.Net
/// Gets or sets the type of the message.
/// </summary>
/// <value>The type of the message.</value>
- public string MessageType { get; set; }
+ public SessionMessageType MessageType { get; set; }
public Guid MessageId { get; set; }