YD_Event.Admin/YD_Event.Application/Api/Dtos/KeyowrdsResponseDto.cs

20 lines
469 B
C#
Raw Normal View History

2025-12-17 10:32:52 +08:00
using System.Text.Json.Serialization;
2025-12-17 11:12:13 +08:00
namespace YD_Event.Application;
2025-12-17 10:32:52 +08:00
public class KeywordsResponseDto : BaseResponseDto
{
/// <summary>
/// 违规的词组或语句,数组形式
/// </summary>
[JsonProperty("data")]
[JsonPropertyName("data")]
public List<string> Data { get; set; }
/// <summary>
/// 违规内容总数
/// </summary>
[JsonProperty("num")]
[JsonPropertyName("num")]
public int Num { get; set; }
}