mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-04-24 02:54:43 +01:00
Added Video3DFormat property
This commit is contained in:
@@ -36,6 +36,12 @@ namespace MediaBrowser.Model.Dto
|
||||
/// <value>The name of the sort.</value>
|
||||
public string SortName { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Gets or sets the video3 D format.
|
||||
/// </summary>
|
||||
/// <value>The video3 D format.</value>
|
||||
public Video3DFormat? Video3DFormat { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Gets or sets the premiere date.
|
||||
/// </summary>
|
||||
|
||||
14
MediaBrowser.Model/Entities/Video3DFormat.cs
Normal file
14
MediaBrowser.Model/Entities/Video3DFormat.cs
Normal file
@@ -0,0 +1,14 @@
|
||||
|
||||
namespace MediaBrowser.Model.Entities
|
||||
{
|
||||
public enum Video3DFormat
|
||||
{
|
||||
HalfSideBySide,
|
||||
|
||||
FullSideBySide,
|
||||
|
||||
FullTopAndBottom,
|
||||
|
||||
HalfTopAndBottom
|
||||
}
|
||||
}
|
||||
@@ -53,6 +53,7 @@
|
||||
<Compile Include="Dto\StudioDto.cs" />
|
||||
<Compile Include="Entities\ItemReview.cs" />
|
||||
<Compile Include="Entities\MetadataFields.cs" />
|
||||
<Compile Include="Entities\Video3DFormat.cs" />
|
||||
<Compile Include="Net\WebSocketMessage.cs" />
|
||||
<Compile Include="Net\WebSocketMessageType.cs" />
|
||||
<Compile Include="Net\WebSocketState.cs" />
|
||||
|
||||
@@ -72,7 +72,7 @@ namespace MediaBrowser.Model.Querying
|
||||
/// Gets or sets the video formats.
|
||||
/// </summary>
|
||||
/// <value>The video formats.</value>
|
||||
public VideoFormat[] VideoFormats { get; set; }
|
||||
public bool? Is3D { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Gets or sets the video types.
|
||||
@@ -189,8 +189,6 @@ namespace MediaBrowser.Model.Querying
|
||||
|
||||
MediaTypes = new string[] {};
|
||||
|
||||
VideoFormats = new VideoFormat[] { };
|
||||
|
||||
VideoTypes = new VideoType[] {};
|
||||
|
||||
Genres = new string[] { };
|
||||
|
||||
Reference in New Issue
Block a user