Iceshrimp.NET/Iceshrimp.Frontend/Core/Schemas/StoredUser.cs
2024-06-19 01:56:48 +02:00

9 lines
No EOL
229 B
C#

using System.Text.Json.Serialization;
using Iceshrimp.Shared.Schemas;
namespace Iceshrimp.Frontend.Core.Schemas;
public class StoredUser : UserResponse
{
[JsonPropertyName("token")] public required string Token { get; set; }
}