* initial remote stream library support; scanning seems to work ok * flood schedule remote streams kind of works * switch remote stream definitions to yaml files * implement remote stream script playback * update changelog
13 lines
350 B
C#
13 lines
350 B
C#
using YamlDotNet.Serialization;
|
|
|
|
namespace ErsatzTV.Core.Streaming;
|
|
|
|
public class YamlRemoteStreamDefinition
|
|
{
|
|
public string Url { get; set; }
|
|
public string Script { get; set; }
|
|
public string Duration { get; set; }
|
|
[YamlMember(Alias = "fallback_query", ApplyNamingConventions = false)]
|
|
public string FallbackQuery { get; set; }
|
|
}
|