* add blocks, block groups * basic block and block item editing * add template groups and basic template editing (name) * add blocks to template calendar * edit playout templates * add calendar preview to playout templates * add basic block playout building * add mysql migration * update changelog
9 lines
210 B
C#
9 lines
210 B
C#
namespace ErsatzTV.ViewModels;
|
|
|
|
public class BlockItemsEditViewModel
|
|
{
|
|
public string Name { get; set; }
|
|
public int Minutes { get; set; }
|
|
public List<BlockItemEditViewModel> Items { get; set; }
|
|
}
|