Undoing changes

This commit is contained in:
Luke Pulverenti
2014-03-13 05:18:32 -04:00
parent 219e0ef19b
commit b7bcc24506
7 changed files with 25 additions and 96 deletions

View File

@@ -1,6 +1,4 @@

using System;
namespace MediaBrowser.Model.Session
{
/// <summary>
@@ -14,8 +12,6 @@ namespace MediaBrowser.Model.Session
/// <value>The type of the item.</value>
public string ItemType { get; set; }
public Guid UserId { get; set; }
/// <summary>
/// Gets or sets the item id.
/// </summary>
@@ -27,7 +23,7 @@ namespace MediaBrowser.Model.Session
/// </summary>
/// <value>The name of the item.</value>
public string ItemName { get; set; }
/// <summary>
/// Gets or sets the context (Movies, Music, Tv, etc)
/// Applicable to genres, studios and persons only because the context of items and artists can be inferred.
@@ -44,4 +40,4 @@ namespace MediaBrowser.Model.Session
public const string TvShows = "TvShows";
public const string Games = "Games";
}
}
}

View File

@@ -1,15 +1,12 @@

using System;
namespace MediaBrowser.Model.Session
{
public class MessageCommand
{
public Guid UserId { get; set; }
{
public string Header { get; set; }
public string Text { get; set; }
public long? TimeoutMs { get; set; }
}
}
}

View File

@@ -1,5 +1,4 @@

using System;
namespace MediaBrowser.Model.Session
{
/// <summary>
@@ -7,11 +6,6 @@ namespace MediaBrowser.Model.Session
/// </summary>
public class PlayRequest
{
public PlayRequest()
{
}
/// <summary>
/// Gets or sets the item ids.
/// </summary>
@@ -29,12 +23,6 @@ namespace MediaBrowser.Model.Session
/// </summary>
/// <value>The play command.</value>
public PlayCommand PlayCommand { get; set; }
/// <summary>
/// Gets or sets the play command.
/// </summary>
/// <value>The play command.</value>
public Guid UserId { get; set; }
}
/// <summary>
@@ -55,4 +43,4 @@ namespace MediaBrowser.Model.Session
/// </summary>
PlayLast
}
}
}

View File

@@ -1,5 +1,4 @@

using System;
namespace MediaBrowser.Model.Session
{
/// <summary>
@@ -35,10 +34,8 @@ namespace MediaBrowser.Model.Session
public class PlaystateRequest
{
public Guid UserId { get; set; }
public PlaystateCommand Command { get; set; }
public long? SeekPositionTicks { get; set; }
}
}
}