* add custom index to collection items * add custom collection order to ui * cleanup
12 lines
266 B
C#
12 lines
266 B
C#
using ErsatzTV.Application.MediaCards;
|
|
|
|
namespace ErsatzTV.Application.MediaCollections
|
|
{
|
|
public record MediaCollectionViewModel(int Id, string Name) : MediaCardViewModel(
|
|
Id,
|
|
Name,
|
|
string.Empty,
|
|
Name,
|
|
string.Empty);
|
|
}
|