IUser.cs 232 B

123456789
  1. namespace PixiEditor.IdentityProvider;
  2. public interface IUser
  3. {
  4. public string Username { get; }
  5. public string? AvatarUrl { get; }
  6. public List<ProductData> OwnedProducts { get; }
  7. public bool IsLoggedIn { get; }
  8. }