added audio and subtitle language info to search results
This commit is contained in:
parent
7e0e492fca
commit
95e5efa533
7 changed files with 98 additions and 30 deletions
10
backend/src/Models/JellyfinApi/MediaStream.cs
Normal file
10
backend/src/Models/JellyfinApi/MediaStream.cs
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
namespace JellyGlass.Models.JellyfinApi;
|
||||
|
||||
public class MediaStream
|
||||
{
|
||||
public string Title { get; set; }
|
||||
public string DisplayTitle { get; set; }
|
||||
public string Type { get; set; }
|
||||
public string? LocalizedDefault { get; set; }
|
||||
public string Language { get; set; } = "undefined";
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue