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