ChatResponseVO.cs 273 B

1234567891011
  1. namespace HTEXGpt.Models
  2. {
  3. public class ChatResponseVO
  4. {
  5. /// <summary>
  6. /// @ApiModelProperty(value = "结果", notes = "结果")
  7. /// </summary>
  8. public string? result { get; set; }
  9. public int token { get; set; }
  10. }
  11. }