2019-01-13 20:01:16 +00:00
|
|
|
using System;
|
2019-01-13 19:25:32 +00:00
|
|
|
using MediaBrowser.Model.Entities;
|
2018-12-27 23:27:57 +00:00
|
|
|
|
|
|
|
namespace MediaBrowser.Controller.Persistence
|
|
|
|
{
|
|
|
|
public class MediaStreamQuery
|
|
|
|
{
|
|
|
|
/// <summary>
|
|
|
|
/// Gets or sets the type.
|
|
|
|
/// </summary>
|
|
|
|
/// <value>The type.</value>
|
|
|
|
public MediaStreamType? Type { get; set; }
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Gets or sets the index.
|
|
|
|
/// </summary>
|
|
|
|
/// <value>The index.</value>
|
|
|
|
public int? Index { get; set; }
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Gets or sets the item identifier.
|
|
|
|
/// </summary>
|
|
|
|
/// <value>The item identifier.</value>
|
|
|
|
public Guid ItemId { get; set; }
|
|
|
|
}
|
|
|
|
}
|