using System.Collections.Generic; namespace BTCPayApp.CommonServer; public class AppUserInfo { public string? UserId { get; set; } public string? Email { get; set; } public IEnumerable? Roles { get; set; } public IEnumerable? Stores { get; set; } } public class AppUserStoreInfo { public string? Id { get; set; } public string? Name { get; set; } public string? RoleId { get; set; } public bool Archived { get; set; } public IEnumerable? Permissions { get; set; } }