Luski.Net/Luski.net/Interfaces/IAppUser.cs

10 lines
228 B
C#
Raw Permalink Normal View History

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