2024-03-20 23:18:34 -04:00
|
|
|
using Luski.Shared.PublicServers.V1.Enums;
|
2023-07-03 23:24:35 -04:00
|
|
|
|
|
|
|
namespace Luski.net.Interfaces;
|
|
|
|
|
|
|
|
public interface IAppUser : IUser
|
|
|
|
{
|
|
|
|
public ErrorCode? Error { get; }
|
|
|
|
public string? ErrorMessage { get; }
|
|
|
|
public string Username { get; }
|
|
|
|
}
|