8 lines
198 B
C#
8 lines
198 B
C#
using System.Collections.Generic;
|
|
using MediatR;
|
|
|
|
namespace ErsatzTV.Application.Playouts.Queries
|
|
{
|
|
public record GetPlayoutItemsById(int PlayoutId) : IRequest<List<PlayoutItemViewModel>>;
|
|
}
|