support multiple local libraries (#317)

* allow multiple local libraries

* add "move library path" function
This commit is contained in:
Jason Dove
2021-07-20 07:47:12 -05:00
committed by GitHub
parent c9baff2cd5
commit 9fbe950e6e
34 changed files with 1004 additions and 94 deletions
@@ -0,0 +1,15 @@
using System.Collections.Generic;
using ErsatzTV.Core.Domain;
namespace ErsatzTV.ViewModels
{
public class LocalLibraryEditViewModel
{
public int Id { get; set; }
public string Name { get; set; }
public LibraryMediaKind MediaKind { get; set; }
public string NewPath { get; set; }
public List<LocalLibraryPathEditViewModel> Paths { get; set; }
public bool HasChanges { get; set; }
}
}