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

ErrorDetails.cs 317B

1234567891011121314
  1. using System.Text.Json;
  2. namespace Diligent.WebAPI.Host.Exceptions
  3. {
  4. public class ErrorDetails
  5. {
  6. public string? Message { get; set; }
  7. public int StatusCode { get; set; }
  8. public override string ToString()
  9. {
  10. return JsonSerializer.Serialize(this);
  11. }
  12. }
  13. }