* 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
8 lines
180 B
C#
8 lines
180 B
C#
namespace ErsatzTV.Core.Domain;
|
|
|
|
public class RemoteStreamMetadata : Metadata
|
|
{
|
|
public int RemoteStreamId { get; set; }
|
|
public RemoteStream RemoteStream { get; set; }
|
|
}
|