Files
Library/OwnChar/Api/IUserManager.cs
2024-06-30 18:19:00 +02:00

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();
}