Files
ersatztv/ErsatzTV.Core/Domain/FillWithGroupMode.cs
T
Jason DoveandGitHub 545bf1b775 fill with group (#1534)
* use browser's accept-language header

* add fill with group mode to schedule items

* update dependencies

* fixes

* fix tests
2024-01-02 10:18:49 -06:00

9 lines
143 B
C#

namespace ErsatzTV.Core.Domain;
public enum FillWithGroupMode
{
None = 0,
FillWithOrderedGroups = 1,
FillWithShuffledGroups = 2
}