public AutoCreatePlaylistsOp(PlaylistSortMode sortMode, int maxPerNamePlaylist, bool removeEmptyPlaylists)
 {
     SortMode             = sortMode;
     MaxPerNamePlaylist   = maxPerNamePlaylist;
     RemoveEmptyPlaylists = removeEmptyPlaylists;
 }
Example #2
0
 public SortPlaylistOp(string playlistID, PlaylistSortMode sortMode, bool reverse)
 {
     PlaylistID = playlistID;
     SortMode   = sortMode;
     Reverse    = reverse;
 }