* use browser's accept-language header * add fill with group mode to schedule items * update dependencies * fixes * fix tests
9 lines
143 B
C#
9 lines
143 B
C#
namespace ErsatzTV.Core.Domain;
|
|
|
|
public enum FillWithGroupMode
|
|
{
|
|
None = 0,
|
|
FillWithOrderedGroups = 1,
|
|
FillWithShuffledGroups = 2
|
|
}
|