11 lines
243 B
C#
11 lines
243 B
C#
|
using Luski.net.Enums;
|
||
|
using Luski.net.Structures.Public;
|
||
|
|
||
|
namespace Luski.net.Interfaces;
|
||
|
|
||
|
public interface IAppUser : IUser
|
||
|
{
|
||
|
public ErrorCode? Error { get; }
|
||
|
public string? ErrorMessage { get; }
|
||
|
public string Username { get; }
|
||
|
}
|