mirror of
https://git.v0l.io/Kieran/void.cat.git
synced 2025-03-18 01:02:21 +01:00
Co-authored-by: Kieran <kieran@harkin.me> Reviewed-on: https://git.v0l.io/Kieran/void.cat/pulls/65
8 lines
164 B
C#
8 lines
164 B
C#
namespace VoidCat.Model;
|
|
|
|
public class AdminApiUser : ApiUser
|
|
{
|
|
public string Storage { get; init; } = null!;
|
|
public string Email { get; init; } = null!;
|
|
}
|