8 lines
148 B
C#
8 lines
148 B
C#
|
|
using System.Text.Json.Serialization;
|
||
|
|
|
||
|
|
namespace SafelyYou.Api;
|
||
|
|
|
||
|
|
public record ErrorResponse(
|
||
|
|
[property: JsonPropertyName("msg")] string Msg
|
||
|
|
);
|