add smart collection editor to support renaming (#2253)

This commit is contained in:
Jason Dove
2025-08-04 16:24:08 +00:00
committed by GitHub
parent 61ce1bad08
commit a728c5e31e
10 changed files with 118 additions and 6 deletions
@@ -0,0 +1,8 @@
namespace ErsatzTV.ViewModels;
public class SmartCollectionEditViewModel
{
public int Id { get; set; }
public string Name { get; set; }
public string Query { get; set; }
}