mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-03-13 11:35:51 +01:00
8 lines
175 B
C#
8 lines
175 B
C#
#nullable enable
|
|
namespace BTCPayServer.Client.App.Models;
|
|
|
|
public class AcceptInviteRequest
|
|
{
|
|
public string? UserId { get; set; }
|
|
public string? Code { get; set; }
|
|
}
|