* start adding jellyfin path info; fix some scanning bugs * sync jellyfin libraries before scanning to ensure latest path infos * code cleanup * support emby path infos * fix periodic scanning of emby and jellyfin libraries * bug fixes
13 lines
270 B
C#
13 lines
270 B
C#
using Newtonsoft.Json;
|
|
|
|
namespace ErsatzTV.Core.Api.Channels;
|
|
|
|
public record ChannelResponseModel(
|
|
int Id,
|
|
string Number,
|
|
string Name,
|
|
[property: JsonProperty("ffmpegProfile")]
|
|
string FFmpegProfile,
|
|
string Language,
|
|
string StreamingMode);
|