btcpayserver/BTCPayServer/Data/UserStore.cs

35 lines
605 B
C#
Raw Normal View History

2017-09-13 08:47:34 +02:00
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;
}
2017-09-13 08:47:34 +02:00
public string StoreDataId
{
get; set;
}
public StoreData StoreData
{
get; set;
}
public string Role
{
get;
set;
}
}
2017-09-13 08:47:34 +02:00
}