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