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ů.
| 1234567891011121314 |
- using System.Text.Json;
-
- namespace Diligent.WebAPI.Host.Exceptions
- {
- public class ErrorDetails
- {
- public string? Message { get; set; }
- public int StatusCode { get; set; }
- public override string ToString()
- {
- return JsonSerializer.Serialize(this);
- }
- }
- }
|