mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-02-24 14:50:50 +01:00
20 lines
539 B
C#
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; }
|
|
}
|