Initial commit

This commit is contained in:
Jason Dove
2021-02-08 21:13:53 -06:00
commit 4d52e115b5
493 changed files with 31399 additions and 0 deletions
@@ -0,0 +1,10 @@
using System.Collections.Generic;
namespace ErsatzTV.ViewModels
{
public class ProgramScheduleItemsEditViewModel
{
public string Name { get; set; }
public List<ProgramScheduleItemEditViewModel> Items { get; set; }
}
}