* re-namespace * optimize usings * more usings * more of the same * more implicit/global usings * cleanup all usings * minor fixes
11 lines
326 B
C#
11 lines
326 B
C#
using ErsatzTV.Application.MediaCollections;
|
|
using ErsatzTV.Core.Domain;
|
|
|
|
namespace ErsatzTV.ViewModels;
|
|
|
|
public class MultiCollectionItemEditViewModel
|
|
{
|
|
public virtual MediaCollectionViewModel Collection { get; set; }
|
|
public bool ScheduleAsGroup { get; set; }
|
|
public PlaybackOrder PlaybackOrder { get; set; }
|
|
} |