Add an Administrator #14

Merged
Wesser merged 3 commits from feat/add-user into release/v1.0.0 2024-06-01 08:27:02 +03:00
Showing only changes of commit 6fb5a83183 - Show all commits

View File

@ -0,0 +1,10 @@
namespace Mirea.Api.Endpoint.Common.Model;
public class Admin
{
public const string PathToSave = "admin.json";
public required string Username { get; set; }
public required string Email { get; set; }
public required string PasswordHash { get; set; }
public required string Salt { get; set; }
}