btcpayserver/BTCPayServer/Data/UserStore.cs
NicolasDorier b5c6ed3860 Init
2017-09-13 15:55:16 +09:00

29 lines
407 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;
}
}
}