22 lines
542 B
C#
22 lines
542 B
C#
// <copyright file="ThemeMediaResult.cs" company="PlaceholderCompany">
|
|
// Copyright (c) PlaceholderCompany. All rights reserved.
|
|
// </copyright>
|
|
|
|
using System;
|
|
using MediaBrowser.Model.Dto;
|
|
|
|
namespace MediaBrowser.Model.Querying
|
|
{
|
|
/// <summary>
|
|
/// Class ThemeMediaResult.
|
|
/// </summary>
|
|
public class ThemeMediaResult : QueryResult<BaseItemDto>
|
|
{
|
|
/// <summary>
|
|
/// Gets or sets the owner id.
|
|
/// </summary>
|
|
/// <value>The owner id.</value>
|
|
public Guid OwnerId { get; set; }
|
|
}
|
|
}
|