mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-04-22 18:14:42 +01:00
improve theme song methods
This commit is contained in:
@@ -84,6 +84,7 @@
|
||||
<Compile Include="Net\NetworkShare.cs" />
|
||||
<Compile Include="Net\NetworkShareType.cs" />
|
||||
<Compile Include="Querying\PersonsQuery.cs" />
|
||||
<Compile Include="Querying\ThemeSongsResult.cs" />
|
||||
<Compile Include="Serialization\IJsonSerializer.cs" />
|
||||
<Compile Include="Serialization\IXmlSerializer.cs" />
|
||||
<Compile Include="Updates\CheckForUpdateResult.cs" />
|
||||
|
||||
16
MediaBrowser.Model/Querying/ThemeSongsResult.cs
Normal file
16
MediaBrowser.Model/Querying/ThemeSongsResult.cs
Normal file
@@ -0,0 +1,16 @@
|
||||
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; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user