bloxstrap/Bloxstrap/Models/Web/PostExceptionV2Request.cs
2025-04-05 01:20:44 +01:00

15 lines
344 B
C#

namespace Bloxstrap.Models.Web
{
internal class PostExceptionV2Request
{
[JsonPropertyName("type")]
public string Type { get; set; } = "";
[JsonPropertyName("message")]
public string Message { get; set; } = "";
[JsonPropertyName("log")]
public string Log { get; set; } = "";
}
}