add v2 channels table (#708)

* change mock api port; fix cors

* fix version request

* accept base url env var

* tweak colors

* fix version service

* add basic channels list

* fix auto page title for ts classes

* add GET /api/channels
This commit is contained in:
Jason Dove
2022-03-16 10:28:54 -05:00
committed by GitHub
parent d88c179b63
commit 4b9781dad4
18 changed files with 253 additions and 37 deletions
@@ -0,0 +1,9 @@
namespace ErsatzTV.Core.Api.Channels;
public record ChannelResponseModel(
int Id,
string Number,
string Name,
string FFmpegProfile,
string Language,
string StreamingMode);