btcpayserver/BTCPayApp.CommonServer/AppUserInfo.cs
2024-07-11 15:57:28 +02:00

20 lines
539 B
C#

using System.Collections.Generic;
namespace BTCPayApp.CommonServer;
public class AppUserInfo
{
public string? UserId { get; set; }
public string? Email { get; set; }
public IEnumerable<string>? Roles { get; set; }
public IEnumerable<AppUserStoreInfo>? 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<string>? Permissions { get; set; }
}