Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

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. }