mirror of https://github.com/ErsatzTV/ErsatzTV.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
416 B
17 lines
416 B
namespace ErsatzTV.Core.Domain; |
|
|
|
public enum MultipleMode |
|
{ |
|
// static integer count |
|
Count = 0, |
|
|
|
// current size of the collection |
|
CollectionSize = 1, |
|
|
|
// current size of the playlist item |
|
PlaylistItemSize = 2, |
|
|
|
// from one item (not a multi-episode) to however many multi-episodes are linked together |
|
// is this limited to chronological and season/episode? |
|
MultiEpisodeSize = 3 |
|
}
|
|
|