mirror of https://github.com/ErsatzTV/ErsatzTV.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
836 B
23 lines
836 B
using ErsatzTV.Application.Channels; |
|
using ErsatzTV.Application.Playouts; |
|
using ErsatzTV.Application.ProgramSchedules; |
|
|
|
namespace ErsatzTV.ViewModels; |
|
|
|
public class PlayoutEditViewModel |
|
{ |
|
public string Kind { get; set; } |
|
public ChannelViewModel Channel { get; set; } |
|
public ProgramScheduleViewModel ProgramSchedule { get; set; } |
|
public string ExternalJsonFile { get; set; } |
|
public string YamlFile { get; set; } |
|
|
|
public CreatePlayout ToCreate() => |
|
Kind switch |
|
{ |
|
PlayoutKind.ExternalJson => new CreateExternalJsonPlayout(Channel.Id, ExternalJsonFile), |
|
PlayoutKind.Yaml => new CreateYamlPlayout(Channel.Id, YamlFile), |
|
PlayoutKind.Block => new CreateBlockPlayout(Channel.Id), |
|
_ => new CreateFloodPlayout(Channel.Id, ProgramSchedule.Id) |
|
}; |
|
}
|
|
|