* add custom index to collection items * add custom collection order to ui * cleanup
12 lines
319 B
C#
12 lines
319 B
C#
namespace ErsatzTV.Core.Domain
|
|
{
|
|
public class CollectionItem
|
|
{
|
|
public int CollectionId { get; set; }
|
|
public Collection Collection { get; set; }
|
|
public int MediaItemId { get; set; }
|
|
public MediaItem MediaItem { get; set; }
|
|
public int? CustomIndex { get; set; }
|
|
}
|
|
}
|