mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-02-24 14:50:50 +01:00
12 lines
230 B
C#
12 lines
230 B
C#
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace BTCPayApp.CommonServer;
|
|
|
|
public class SignupRequest
|
|
{
|
|
[Required]
|
|
public string? Email { get; init; }
|
|
|
|
[Required]
|
|
public string? Password { get; init; }
|
|
}
|