* add channel transcode mode and idle behavior * allow custom_title on all yaml content instructions
8 lines
115 B
C#
8 lines
115 B
C#
namespace ErsatzTV.Core.Domain;
|
|
|
|
public enum ChannelIdleBehavior
|
|
{
|
|
StopOnDisconnect = 0,
|
|
KeepRunning = 1
|
|
}
|