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; }
}
}