mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-06-15 12:10:47 +01:00
update interlaced detection
This commit is contained in:
@@ -30,6 +30,12 @@ namespace MediaBrowser.Model.Entities
|
||||
/// <value>The language.</value>
|
||||
public string Language { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Gets or sets the comment.
|
||||
/// </summary>
|
||||
/// <value>The comment.</value>
|
||||
public string Comment { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Gets or sets a value indicating whether this instance is interlaced.
|
||||
/// </summary>
|
||||
|
||||
@@ -162,6 +162,7 @@
|
||||
<Compile Include="MediaInfo\MediaProtocol.cs" />
|
||||
<Compile Include="MediaInfo\SubtitleTrackEvent.cs" />
|
||||
<Compile Include="MediaInfo\SubtitleTrackInfo.cs" />
|
||||
<Compile Include="Net\EndPointInfo.cs" />
|
||||
<Compile Include="Net\HttpResponse.cs" />
|
||||
<Compile Include="Net\MimeTypes.cs" />
|
||||
<Compile Include="Notifications\NotificationOption.cs" />
|
||||
|
||||
8
MediaBrowser.Model/Net/EndPointInfo.cs
Normal file
8
MediaBrowser.Model/Net/EndPointInfo.cs
Normal file
@@ -0,0 +1,8 @@
|
||||
namespace MediaBrowser.Model.Net
|
||||
{
|
||||
public class EndPointInfo
|
||||
{
|
||||
public bool IsLocal { get; set; }
|
||||
public bool IsInNetwork { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user