* properly scope jellyfin disconnect * add emby entities * add emby media source page * add emby media source editor * sync emby libraries * enable emby library sync toggle * add emby path replacements editor * add emby movie synchronization * fix emby artwork * sync emby television * code cleanup * add jellyfin/emby address placeholder * tweak jellyfin/emby address form
19 lines
624 B
C#
19 lines
624 B
C#
namespace ErsatzTV.Infrastructure.Emby.Models
|
|
{
|
|
public class EmbyMediaStreamResponse
|
|
{
|
|
public string Type { get; set; }
|
|
public string Codec { get; set; }
|
|
public string Language { get; set; }
|
|
public bool? IsInterlaced { get; set; }
|
|
public int? Height { get; set; }
|
|
public int? Width { get; set; }
|
|
public int Index { get; set; }
|
|
public bool IsDefault { get; set; }
|
|
public bool IsForced { get; set; }
|
|
public string Profile { get; set; }
|
|
public string AspectRatio { get; set; }
|
|
public int? Channels { get; set; }
|
|
}
|
|
}
|