12 lines
275 B
C#
12 lines
275 B
C#
using ErsatzTV.Core.Domain;
|
|
|
|
namespace ErsatzTV.Application.Channels;
|
|
|
|
public record ChannelStreamingSpecsViewModel(
|
|
int Height,
|
|
int Width,
|
|
int Bitrate,
|
|
FFmpegProfileVideoFormat VideoFormat,
|
|
string VideoProfile,
|
|
FFmpegProfileAudioFormat AudioFormat);
|