23 lines
492 B
C#
23 lines
492 B
C#
#nullable enable
|
|
namespace ErsatzTV.Core.Api.Channels;
|
|
|
|
public record AutoTuneProposalResponseModel(
|
|
string Axis,
|
|
string Value,
|
|
string Name,
|
|
string Number,
|
|
int ItemCount,
|
|
bool AlreadyExists);
|
|
|
|
public record AutoTuneChannelResultModel(
|
|
string Name,
|
|
string Status,
|
|
int? ChannelId,
|
|
string? Reason);
|
|
|
|
public record AutoTuneResultResponseModel(
|
|
List<AutoTuneChannelResultModel> Results,
|
|
int CreatedCount,
|
|
int SkippedCount,
|
|
int FailedCount);
|