您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

123456789101112131415
  1. using System.Net;
  2. using System.Text.Json;
  3. namespace BlackRock.Reporting.API.Exceptions
  4. {
  5. public class Error
  6. {
  7. public string Title { get; set; }
  8. public HttpStatusCode StatusCode { get; set; }
  9. public override string ToString()
  10. {
  11. return JsonSerializer.Serialize(this);
  12. }
  13. }
  14. }