* update dependencies * add channel progress mode * implement on demand channel progress * update changelog
8 lines
102 B
C#
8 lines
102 B
C#
namespace ErsatzTV.Core.Domain;
|
|
|
|
public enum ChannelProgressMode
|
|
{
|
|
Always = 0,
|
|
OnDemand = 1
|
|
}
|