aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/Session
diff options
context:
space:
mode:
authorStephen <snazy2000@btinternet.com>2014-06-30 06:20:24 +0100
committerStephen <snazy2000@btinternet.com>2014-06-30 06:20:24 +0100
commit2a9e4778124de3103bd4a50f806a3694b57d3c6a (patch)
tree0275788f3b9706b26441edf48a0b4975cc02ee5d /MediaBrowser.Model/Session
parent608ebf4829e7e394170bb2dec8a33c83600e9c08 (diff)
parent62d98551edf421ba50f2eadf95d6c3d1fb1d20ae (diff)
Merge pull request #1 from MediaBrowser/master
update
Diffstat (limited to 'MediaBrowser.Model/Session')
-rw-r--r--MediaBrowser.Model/Session/GeneralCommand.cs5
-rw-r--r--MediaBrowser.Model/Session/SessionInfoDto.cs3
2 files changed, 4 insertions, 4 deletions
diff --git a/MediaBrowser.Model/Session/GeneralCommand.cs b/MediaBrowser.Model/Session/GeneralCommand.cs
index 7e818245d..ae9ab3adc 100644
--- a/MediaBrowser.Model/Session/GeneralCommand.cs
+++ b/MediaBrowser.Model/Session/GeneralCommand.cs
@@ -1,5 +1,4 @@
-using System;
-using System.Collections.Generic;
+using System.Collections.Generic;
namespace MediaBrowser.Model.Session
{
@@ -13,7 +12,7 @@ namespace MediaBrowser.Model.Session
public GeneralCommand()
{
- Arguments = new Dictionary<string, string>(StringComparer.OrdinalIgnoreCase);
+ Arguments = new Dictionary<string, string>();
}
}
}
diff --git a/MediaBrowser.Model/Session/SessionInfoDto.cs b/MediaBrowser.Model/Session/SessionInfoDto.cs
index 7217e28f4..40723eff8 100644
--- a/MediaBrowser.Model/Session/SessionInfoDto.cs
+++ b/MediaBrowser.Model/Session/SessionInfoDto.cs
@@ -3,11 +3,12 @@ using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Diagnostics;
+using MediaBrowser.Model.Extensions;
namespace MediaBrowser.Model.Session
{
[DebuggerDisplay("Client = {Client}, Username = {UserName}")]
- public class SessionInfoDto : INotifyPropertyChanged
+ public class SessionInfoDto : IHasPropertyChangedEvent
{
/// <summary>
/// Gets or sets a value indicating whether this instance can seek.