17 lines
357 B
C#
17 lines
357 B
C#
|
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; }
|
|||
|
}
|
|||
|
}
|