10 lines
216 B
C#
10 lines
216 B
C#
public record AlertFeedbackQualityRow(
|
|
Guid Id,
|
|
Guid AlertId,
|
|
string AlertType,
|
|
string FeedbackType,
|
|
string? Comment,
|
|
DateTimeOffset CreatedAt,
|
|
string? ScenarioId,
|
|
string? SessionId);
|