* add custom index to collection items * add custom collection order to ui * cleanup
14 lines
369 B
C#
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; }
|
|
}
|
|
}
|