Luski.Net/Luski.net/Interfaces/IUser.cs

40 lines
972 B
C#
Raw Normal View History

using System.Threading;
using Luski.net.Enums;
2023-01-01 22:50:39 -05:00
using System.Threading.Tasks;
using Luski.net.JsonTypes;
2023-01-01 22:50:39 -05:00
namespace Luski.net.Interfaces;
/// <summary>
/// Represents the curent user
/// </summary>
public interface IUser
{
/// <summary>
/// The current Id of the user
/// </summary>
long Id { get; }
/// <summary>
/// The cerrent username of the user
/// </summary>
string DisplayName { get; }
2023-01-01 22:50:39 -05:00
/// <summary>
/// The current status of the user
/// </summary>
UserStatus Status { get; }
/// <summary>
/// will returen the picture type of the user
/// </summary>
PictureType PictureType { get; }
/// <summary>
/// Gets the current avatar of the user
/// </summary>
Task<byte[]> GetAvatar(CancellationToken CancellationToken);
2023-01-01 22:50:39 -05:00
/// <summary>
/// Gets the current user key
/// </summary>
/// <returns></returns>
Task<long> GetUserKey(CancellationToken CancellationToken);
2023-01-01 22:50:39 -05:00
}