mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-03-04 01:53:52 +01:00
10 lines
318 B
C#
10 lines
318 B
C#
using OpenIddict.EntityFrameworkCore.Models;
|
|
|
|
namespace BTCPayServer.Data
|
|
{
|
|
public class BTCPayOpenIdClient: OpenIddictApplication<string, BTCPayOpenIdAuthorization, BTCPayOpenIdToken>
|
|
{
|
|
public string ApplicationUserId { get; set; }
|
|
public ApplicationUser ApplicationUser { get; set; }
|
|
}
|
|
}
|