Files

8 lines
151 B
C#
Raw Permalink Normal View History

2026-08-06 12:58:41 -05:00
using System.Text.Json.Serialization;
namespace SafelyYou.Api;
public record NotFoundResponse(
[property: JsonPropertyName("msg")] string Msg
);