11 lines
290 B
C#
11 lines
290 B
C#
using ErsatzTV.Core.Domain;
|
|
|
|
namespace ErsatzTV.Application.Playouts
|
|
{
|
|
public record PlayoutViewModel(
|
|
int Id,
|
|
PlayoutChannelViewModel Channel,
|
|
PlayoutProgramScheduleViewModel ProgramSchedule,
|
|
ProgramSchedulePlayoutType ProgramSchedulePlayoutType);
|
|
}
|