misc
This commit is contained in:
parent
fbc6f562e3
commit
d7e0c59559
31 changed files with 249 additions and 57 deletions
14
Femto.Api/Controllers/Auth/ListSignupCodesResult.cs
Normal file
14
Femto.Api/Controllers/Auth/ListSignupCodesResult.cs
Normal file
|
@ -0,0 +1,14 @@
|
|||
namespace Femto.Api.Controllers.Auth;
|
||||
|
||||
public record ListSignupCodesResult(
|
||||
IEnumerable<SignupCodeDto> SignupCodes
|
||||
);
|
||||
|
||||
public record SignupCodeDto(
|
||||
string Code,
|
||||
string Email,
|
||||
string Name,
|
||||
Guid? RedeemingUserId,
|
||||
string? RedeemingUsername,
|
||||
DateTimeOffset? ExpiresOn
|
||||
);
|
Loading…
Add table
Add a link
Reference in a new issue