9 lines
255 B
C#
9 lines
255 B
C#
namespace Computernewb.CollabVMAuthServer.HTTP.Payloads;
|
|
|
|
public class ResetPasswordPayload
|
|
{
|
|
public string username { get; set; }
|
|
public string email { get; set; }
|
|
public string code { get; set; }
|
|
public string newPassword { get; set; }
|
|
} |