* sort block tree views * fix naming validation for block scheduling * show deco group name in deco editor * show block group name in block editor * show template group name in template editor * show deco template group name in deco template editor * fix template rename crash * fix block rename crash * fix deco template rename crash
14 lines
389 B
C#
14 lines
389 B
C#
using ErsatzTV.Core.Domain.Scheduling;
|
|
|
|
namespace ErsatzTV.ViewModels;
|
|
|
|
public class BlockItemsEditViewModel
|
|
{
|
|
public int GroupId { get; set; }
|
|
public string GroupName { get; set; }
|
|
public string Name { get; set; }
|
|
public int Minutes { get; set; }
|
|
public BlockStopScheduling StopScheduling { get; set; }
|
|
public List<BlockItemEditViewModel> Items { get; set; }
|
|
}
|