using System;
using System.Collections.Generic;
using Newtonsoft.Json;
namespace BTCPayServer.Client.Models
{
public class StoreData : StoreBaseData
{
///
/// the id of the store
///
public string Id { get; set; }
}
public class StoreUserData : ApplicationUserData
{
///
/// the id of the user
///
[Obsolete("Use Id instead")]
public string UserId { get; set; }
///
/// the store role of the user
///
public string StoreRole { get; set; }
///
/// the store role of the user
///
[Obsolete("Use StoreRole instead")]
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; }
}
}