Files
ersatztv/ErsatzTV.Core/Domain/Collection/Collection.cs
T
Jason DoveandGitHub 4953617f79 custom collection playback order (#64)
* add custom index to collection items

* add custom collection order to ui

* cleanup
2021-03-12 19:24:28 +00:00

14 lines
369 B
C#

using System.Collections.Generic;
namespace ErsatzTV.Core.Domain
{
public class Collection
{
public int Id { get; set; }
public string Name { get; set; }
public bool UseCustomPlaybackOrder { get; set; }
public List<MediaItem> MediaItems { get; set; }
public List<CollectionItem> CollectionItems { get; set; }
}
}