Files
SafelyYouCodingChallenge/dotnet/SafelyYou/Api/NotFoundResponse.cs
T

8 lines
151 B
C#

using System.Text.Json.Serialization;
namespace SafelyYou.Api;
public record NotFoundResponse(
[property: JsonPropertyName("msg")] string Msg
);