* init * minor naming change * address to comments round 1 * update dependencies * formatting * make sure it rotates * update changelog --------- Co-authored-by: Jason Dove <1695733+jasongdove@users.noreply.github.com>
13 lines
221 B
C#
13 lines
221 B
C#
namespace ErsatzTV.Core.Domain;
|
|
|
|
public enum PlaybackOrder
|
|
{
|
|
Chronological = 1,
|
|
Random = 2,
|
|
Shuffle = 3,
|
|
ShuffleInOrder = 4,
|
|
MultiEpisodeShuffle = 5,
|
|
SeasonEpisode = 6,
|
|
RandomRotation = 7
|
|
}
|