mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-07-18 20:24:20 +01:00
fix portable and 3.5 project references
This commit is contained in:
21
MediaBrowser.Model/Session/PlaybackStartInfo.cs
Normal file
21
MediaBrowser.Model/Session/PlaybackStartInfo.cs
Normal file
@@ -0,0 +1,21 @@
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace MediaBrowser.Model.Session
|
||||
{
|
||||
/// <summary>
|
||||
/// Class PlaybackStartInfo.
|
||||
/// </summary>
|
||||
public class PlaybackStartInfo : PlaybackProgressInfo
|
||||
{
|
||||
public PlaybackStartInfo()
|
||||
{
|
||||
QueueableMediaTypes = new List<string>();
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Gets or sets the queueable media types.
|
||||
/// </summary>
|
||||
/// <value>The queueable media types.</value>
|
||||
public List<string> QueueableMediaTypes { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user