10 lines
No EOL
309 B
C#
10 lines
No EOL
309 B
C#
using System.Text.Json.Serialization;
|
|
using Iceshrimp.Shared.Schemas.Web;
|
|
|
|
namespace Iceshrimp.Frontend.Core.Schemas;
|
|
|
|
public class StoredUser : UserResponse
|
|
{
|
|
[JsonPropertyName("token")] public required string Token { get; set; }
|
|
public bool IsAdmin { get; set; }
|
|
} |