mirror of
https://github.com/microsoft/agent-framework.git
synced 2026-06-16 21:04:09 +08:00
27 lines
605 B
C#
27 lines
605 B
C#
// Copyright (c) Microsoft. All rights reserved.
|
|
|
|
using System.Text.Json.Serialization;
|
|
|
|
namespace SingleAgent;
|
|
|
|
public sealed class SloganResult
|
|
{
|
|
[JsonPropertyName("task")]
|
|
public required string Task { get; set; }
|
|
|
|
[JsonPropertyName("slogan")]
|
|
public required string Slogan { get; set; }
|
|
}
|
|
|
|
public sealed class FeedbackResult
|
|
{
|
|
[JsonPropertyName("comments")]
|
|
public string Comments { get; set; } = string.Empty;
|
|
|
|
[JsonPropertyName("rating")]
|
|
public int Rating { get; set; }
|
|
|
|
[JsonPropertyName("actions")]
|
|
public string Actions { get; set; } = string.Empty;
|
|
}
|