8 lines
169 B
C#
8 lines
169 B
C#
using LanguageExt;
|
|
using MediatR;
|
|
|
|
namespace ErsatzTV.Application.Playouts.Queries
|
|
{
|
|
public record GetPlayoutById(int Id) : IRequest<Option<PlayoutViewModel>>;
|
|
}
|