Files
ersatztv/ErsatzTV/ViewModels/ProgramScheduleItemEditViewModel.cs
T
2021-02-08 21:13:53 -06:00

17 lines
469 B
C#

using System;
using ErsatzTV.Application.MediaCollections;
using ErsatzTV.Core.Domain;
namespace ErsatzTV.ViewModels
{
public class ProgramScheduleItemEditViewModel
{
public int Id { get; set; }
public int Index { get; set; }
public StartType StartType { get; set; }
public TimeSpan? StartTime { get; set; }
public PlayoutMode PlayoutMode { get; set; }
public string MediaCollectionName { get; set; }
}
}