2013-04-24 12:37:12 -04:00
|
|
|
|
using System;
|
|
|
|
|
|
|
|
|
|
|
|
namespace MediaBrowser.Model.Querying
|
|
|
|
|
|
{
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// Class ThemeSongsResult
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public class ThemeSongsResult : ItemsResult
|
|
|
|
|
|
{
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// Gets or sets the owner id.
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
/// <value>The owner id.</value>
|
|
|
|
|
|
public string OwnerId { get; set; }
|
|
|
|
|
|
}
|
2013-04-28 12:25:14 -04:00
|
|
|
|
|
2013-04-28 14:30:58 -04:00
|
|
|
|
public class ThemeVideosResult : ItemsResult
|
2013-04-28 12:25:14 -04:00
|
|
|
|
{
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// Gets or sets the owner id.
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
/// <value>The owner id.</value>
|
|
|
|
|
|
public string OwnerId { get; set; }
|
|
|
|
|
|
}
|
2013-04-24 12:37:12 -04:00
|
|
|
|
}
|