JellyGlass/backend/src/Models/JellyfinApi/MediaStream.cs

10 lines
No EOL
281 B
C#

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