aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/Session
diff options
context:
space:
mode:
Diffstat (limited to 'MediaBrowser.Model/Session')
-rw-r--r--MediaBrowser.Model/Session/BrowseRequest.cs3
-rw-r--r--MediaBrowser.Model/Session/ClientCapabilities.cs2
-rw-r--r--MediaBrowser.Model/Session/GeneralCommand.cs2
-rw-r--r--MediaBrowser.Model/Session/GeneralCommandType.cs4
-rw-r--r--MediaBrowser.Model/Session/MessageCommand.cs3
-rw-r--r--MediaBrowser.Model/Session/PlayCommand.cs4
-rw-r--r--MediaBrowser.Model/Session/PlayMethod.cs4
-rw-r--r--MediaBrowser.Model/Session/PlayRequest.cs4
-rw-r--r--MediaBrowser.Model/Session/PlaybackProgressInfo.cs5
-rw-r--r--MediaBrowser.Model/Session/PlaybackStartInfo.cs1
-rw-r--r--MediaBrowser.Model/Session/PlaybackStopInfo.cs2
-rw-r--r--MediaBrowser.Model/Session/PlayerStateInfo.cs4
-rw-r--r--MediaBrowser.Model/Session/PlaystateCommand.cs3
-rw-r--r--MediaBrowser.Model/Session/PlaystateRequest.cs4
-rw-r--r--MediaBrowser.Model/Session/SessionUserInfo.cs4
-rw-r--r--MediaBrowser.Model/Session/TranscodingInfo.cs4
-rw-r--r--MediaBrowser.Model/Session/UserDataChangeInfo.cs3
17 files changed, 25 insertions, 31 deletions
diff --git a/MediaBrowser.Model/Session/BrowseRequest.cs b/MediaBrowser.Model/Session/BrowseRequest.cs
index 0a13c05490..65d58501bd 100644
--- a/MediaBrowser.Model/Session/BrowseRequest.cs
+++ b/MediaBrowser.Model/Session/BrowseRequest.cs
@@ -1,4 +1,3 @@
-
namespace MediaBrowser.Model.Session
{
/// <summary>
@@ -24,4 +23,4 @@ namespace MediaBrowser.Model.Session
/// <value>The name of the item.</value>
public string ItemName { get; set; }
}
-} \ No newline at end of file
+}
diff --git a/MediaBrowser.Model/Session/ClientCapabilities.cs b/MediaBrowser.Model/Session/ClientCapabilities.cs
index 0ba9988bb3..fa74efb1b7 100644
--- a/MediaBrowser.Model/Session/ClientCapabilities.cs
+++ b/MediaBrowser.Model/Session/ClientCapabilities.cs
@@ -1,5 +1,5 @@
-using MediaBrowser.Model.Dlna;
using System;
+using MediaBrowser.Model.Dlna;
namespace MediaBrowser.Model.Session
{
diff --git a/MediaBrowser.Model/Session/GeneralCommand.cs b/MediaBrowser.Model/Session/GeneralCommand.cs
index 5cfe3e67b9..74e58e6786 100644
--- a/MediaBrowser.Model/Session/GeneralCommand.cs
+++ b/MediaBrowser.Model/Session/GeneralCommand.cs
@@ -1,5 +1,5 @@
-using System.Collections.Generic;
using System;
+using System.Collections.Generic;
namespace MediaBrowser.Model.Session
{
diff --git a/MediaBrowser.Model/Session/GeneralCommandType.cs b/MediaBrowser.Model/Session/GeneralCommandType.cs
index 9044dc3ec2..4bb0c5cc50 100644
--- a/MediaBrowser.Model/Session/GeneralCommandType.cs
+++ b/MediaBrowser.Model/Session/GeneralCommandType.cs
@@ -1,4 +1,4 @@
-namespace MediaBrowser.Model.Session
+namespace MediaBrowser.Model.Session
{
/// <summary>
/// This exists simply to identify a set of known commands.
@@ -43,4 +43,4 @@
PlayMediaSource = 34,
PlayTrailers = 35
}
-} \ No newline at end of file
+}
diff --git a/MediaBrowser.Model/Session/MessageCommand.cs b/MediaBrowser.Model/Session/MessageCommand.cs
index b028765ed2..1e558ef077 100644
--- a/MediaBrowser.Model/Session/MessageCommand.cs
+++ b/MediaBrowser.Model/Session/MessageCommand.cs
@@ -1,4 +1,3 @@
-
namespace MediaBrowser.Model.Session
{
public class MessageCommand
@@ -9,4 +8,4 @@ namespace MediaBrowser.Model.Session
public long? TimeoutMs { get; set; }
}
-} \ No newline at end of file
+}
diff --git a/MediaBrowser.Model/Session/PlayCommand.cs b/MediaBrowser.Model/Session/PlayCommand.cs
index 3a5a951d70..b7a8f39ba0 100644
--- a/MediaBrowser.Model/Session/PlayCommand.cs
+++ b/MediaBrowser.Model/Session/PlayCommand.cs
@@ -1,4 +1,4 @@
-namespace MediaBrowser.Model.Session
+namespace MediaBrowser.Model.Session
{
/// <summary>
/// Enum PlayCommand
@@ -26,4 +26,4 @@
/// </summary>
PlayShuffle = 4
}
-} \ No newline at end of file
+}
diff --git a/MediaBrowser.Model/Session/PlayMethod.cs b/MediaBrowser.Model/Session/PlayMethod.cs
index 87b7286272..8daf8c953b 100644
--- a/MediaBrowser.Model/Session/PlayMethod.cs
+++ b/MediaBrowser.Model/Session/PlayMethod.cs
@@ -1,4 +1,4 @@
-namespace MediaBrowser.Model.Session
+namespace MediaBrowser.Model.Session
{
public enum PlayMethod
{
@@ -6,4 +6,4 @@
DirectStream = 1,
DirectPlay = 2
}
-} \ No newline at end of file
+}
diff --git a/MediaBrowser.Model/Session/PlayRequest.cs b/MediaBrowser.Model/Session/PlayRequest.cs
index 2ee489f961..075ae77302 100644
--- a/MediaBrowser.Model/Session/PlayRequest.cs
+++ b/MediaBrowser.Model/Session/PlayRequest.cs
@@ -1,5 +1,5 @@
-using MediaBrowser.Model.Services;
using System;
+using MediaBrowser.Model.Services;
namespace MediaBrowser.Model.Session
{
@@ -40,4 +40,4 @@ namespace MediaBrowser.Model.Session
public string MediaSourceId { get; set; }
public int? StartIndex { get; set; }
}
-} \ No newline at end of file
+}
diff --git a/MediaBrowser.Model/Session/PlaybackProgressInfo.cs b/MediaBrowser.Model/Session/PlaybackProgressInfo.cs
index dfdd42c363..c1d6306710 100644
--- a/MediaBrowser.Model/Session/PlaybackProgressInfo.cs
+++ b/MediaBrowser.Model/Session/PlaybackProgressInfo.cs
@@ -1,5 +1,5 @@
-using MediaBrowser.Model.Dto;
using System;
+using MediaBrowser.Model.Dto;
namespace MediaBrowser.Model.Session
{
@@ -112,7 +112,8 @@ namespace MediaBrowser.Model.Session
RepeatOne = 2
}
- public class QueueItem {
+ public class QueueItem
+ {
public Guid Id { get; set; }
public string PlaylistItemId { get; set; }
}
diff --git a/MediaBrowser.Model/Session/PlaybackStartInfo.cs b/MediaBrowser.Model/Session/PlaybackStartInfo.cs
index f6f496e4ea..e531f41b2a 100644
--- a/MediaBrowser.Model/Session/PlaybackStartInfo.cs
+++ b/MediaBrowser.Model/Session/PlaybackStartInfo.cs
@@ -1,4 +1,3 @@
-
namespace MediaBrowser.Model.Session
{
/// <summary>
diff --git a/MediaBrowser.Model/Session/PlaybackStopInfo.cs b/MediaBrowser.Model/Session/PlaybackStopInfo.cs
index 6f3351eeff..8a85b1998d 100644
--- a/MediaBrowser.Model/Session/PlaybackStopInfo.cs
+++ b/MediaBrowser.Model/Session/PlaybackStopInfo.cs
@@ -1,5 +1,5 @@
-using MediaBrowser.Model.Dto;
using System;
+using MediaBrowser.Model.Dto;
namespace MediaBrowser.Model.Session
{
diff --git a/MediaBrowser.Model/Session/PlayerStateInfo.cs b/MediaBrowser.Model/Session/PlayerStateInfo.cs
index f78842e29b..7e54e16c8f 100644
--- a/MediaBrowser.Model/Session/PlayerStateInfo.cs
+++ b/MediaBrowser.Model/Session/PlayerStateInfo.cs
@@ -1,4 +1,4 @@
-namespace MediaBrowser.Model.Session
+namespace MediaBrowser.Model.Session
{
public class PlayerStateInfo
{
@@ -62,4 +62,4 @@
/// <value>The repeat mode.</value>
public RepeatMode RepeatMode { get; set; }
}
-} \ No newline at end of file
+}
diff --git a/MediaBrowser.Model/Session/PlaystateCommand.cs b/MediaBrowser.Model/Session/PlaystateCommand.cs
index 3b70d54542..6eb3e53c21 100644
--- a/MediaBrowser.Model/Session/PlaystateCommand.cs
+++ b/MediaBrowser.Model/Session/PlaystateCommand.cs
@@ -1,4 +1,3 @@
-
namespace MediaBrowser.Model.Session
{
/// <summary>
@@ -40,4 +39,4 @@ namespace MediaBrowser.Model.Session
FastForward,
PlayPause
}
-} \ No newline at end of file
+}
diff --git a/MediaBrowser.Model/Session/PlaystateRequest.cs b/MediaBrowser.Model/Session/PlaystateRequest.cs
index 8a046b5031..08d3f00725 100644
--- a/MediaBrowser.Model/Session/PlaystateRequest.cs
+++ b/MediaBrowser.Model/Session/PlaystateRequest.cs
@@ -1,4 +1,4 @@
-namespace MediaBrowser.Model.Session
+namespace MediaBrowser.Model.Session
{
public class PlaystateRequest
{
@@ -12,4 +12,4 @@
/// <value>The controlling user identifier.</value>
public string ControllingUserId { get; set; }
}
-} \ No newline at end of file
+}
diff --git a/MediaBrowser.Model/Session/SessionUserInfo.cs b/MediaBrowser.Model/Session/SessionUserInfo.cs
index 7746bc2d68..42a56b92b9 100644
--- a/MediaBrowser.Model/Session/SessionUserInfo.cs
+++ b/MediaBrowser.Model/Session/SessionUserInfo.cs
@@ -1,4 +1,4 @@
-using System;
+using System;
namespace MediaBrowser.Model.Session
{
@@ -18,4 +18,4 @@ namespace MediaBrowser.Model.Session
/// <value>The name of the user.</value>
public string UserName { get; set; }
}
-} \ No newline at end of file
+}
diff --git a/MediaBrowser.Model/Session/TranscodingInfo.cs b/MediaBrowser.Model/Session/TranscodingInfo.cs
index ed86d2358a..5161882fd8 100644
--- a/MediaBrowser.Model/Session/TranscodingInfo.cs
+++ b/MediaBrowser.Model/Session/TranscodingInfo.cs
@@ -1,5 +1,3 @@
-using System.Collections.Generic;
-
namespace MediaBrowser.Model.Session
{
public class TranscodingInfo
@@ -52,4 +50,4 @@ namespace MediaBrowser.Model.Session
SubtitleCodecNotSupported = 21,
DirectPlayError = 22
}
-} \ No newline at end of file
+}
diff --git a/MediaBrowser.Model/Session/UserDataChangeInfo.cs b/MediaBrowser.Model/Session/UserDataChangeInfo.cs
index c6b03200d2..ef0e2c89a7 100644
--- a/MediaBrowser.Model/Session/UserDataChangeInfo.cs
+++ b/MediaBrowser.Model/Session/UserDataChangeInfo.cs
@@ -1,5 +1,4 @@
-using MediaBrowser.Model.Dto;
-using System.Collections.Generic;
+using MediaBrowser.Model.Dto;
namespace MediaBrowser.Model.Session
{