mirror of
https://github.com/claunia/marechai.git
synced 2025-12-16 19:14:25 +00:00
13 lines
350 B
C#
13 lines
350 B
C#
using System.Text.Json.Serialization;
|
|
|
|
namespace Marechai.Data.Models;
|
|
|
|
public sealed record AuthResponse
|
|
{
|
|
[JsonPropertyName("succeeded")]
|
|
public bool Succeeded { get; set; }
|
|
[JsonPropertyName("message")]
|
|
public string Message { get; set; } = null!;
|
|
[JsonPropertyName("token")]
|
|
public string Token { get; set; } = null!;
|
|
} |