mirror of
https://github.com/jellyfin/jellyfin.git
synced 2024-11-16 10:29:01 -07:00
16 lines
343 B
C#
16 lines
343 B
C#
|
|
|||
|
namespace MediaBrowser.Model.Querying
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// Class ThemeMediaResult
|
|||
|
/// </summary>
|
|||
|
public class ThemeMediaResult : ItemsResult
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// Gets or sets the owner id.
|
|||
|
/// </summary>
|
|||
|
/// <value>The owner id.</value>
|
|||
|
public string OwnerId { get; set; }
|
|||
|
}
|
|||
|
}
|