* 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
23 lines
434 B
C#
23 lines
434 B
C#
using Heron.MudCalendar;
|
|
|
|
namespace ErsatzTV.ViewModels;
|
|
|
|
public class TemplateItemEditViewModel : CalendarItem
|
|
{
|
|
private string _blockName;
|
|
public int BlockId { get; set; }
|
|
|
|
public string BlockName
|
|
{
|
|
get => _blockName;
|
|
set
|
|
{
|
|
_blockName = value;
|
|
Text = value;
|
|
}
|
|
}
|
|
|
|
public DateTime LastStart { get; set; }
|
|
public DateTime? LastEnd { get; set; }
|
|
}
|