Files
ersatztv/ErsatzTV.Application/Channels/Queries/GetChannelByNumber.cs
Jason Dove 7de1a87bbf bug fixes (#703)
* catch expected shutdown error in scheduler service

* fix streaming mode inconsistencies
2022-03-13 18:45:21 -05:00

4 lines
138 B
C#

namespace ErsatzTV.Application.Channels;
public record GetChannelByNumber(string ChannelNumber) : IRequest<Option<ChannelViewModel>>;