using System.Collections.Generic;
namespace BTCPayServer.Client.Models
{
public class StoreData : StoreBaseData
{
///
/// the id of the store
///
public string Id { get; set; }
}
public class StoreUserData
{
///
/// the id of the user
///
public string UserId { get; set; }
public string Role { get; set; }
}
public class RoleData
{
public string Id { get; set; }
public List Permissions { get; set; }
public string Role { get; set; }
public bool IsServerRole { get; set; }
}
}