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