mirror of
https://github.com/bloxstraplabs/bloxstrap.git
synced 2025-04-21 10:01:27 -07:00
15 lines
344 B
C#
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; } = "";
|
|
}
|
|
}
|