added audio and subtitle language info to search results

This commit is contained in:
Fishandchips321 2026-03-09 18:19:09 +00:00
parent 7e0e492fca
commit 95e5efa533
7 changed files with 98 additions and 30 deletions

View 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";
}