mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2024-11-20 10:40:29 +01:00
35 lines
605 B
C#
35 lines
605 B
C#
using BTCPayServer.Models;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace BTCPayServer.Data
|
|
{
|
|
public class UserStore
|
|
{
|
|
public string ApplicationUserId
|
|
{
|
|
get; set;
|
|
}
|
|
public ApplicationUser ApplicationUser
|
|
{
|
|
get; set;
|
|
}
|
|
|
|
public string StoreDataId
|
|
{
|
|
get; set;
|
|
}
|
|
public StoreData StoreData
|
|
{
|
|
get; set;
|
|
}
|
|
public string Role
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
}
|
|
}
|