10 lines
272 B
C#
10 lines
272 B
C#
using OwnChar.Model;
|
|
using Pilz.Cryptography;
|
|
|
|
namespace OwnChar.Api;
|
|
public interface IUserManager
|
|
{
|
|
UserAccount? CreateUserAccount(string? username, SecureString? password);
|
|
bool DeleteUserAccount(UserAccount? account);
|
|
UserProfile? GetOwnUserProfile();
|
|
} |