Files
CollabVMAuthServer/CollabVMAuthServer/HTTP/Payloads/ResetPasswordPayload.cs
2024-04-05 20:08:23 -04:00

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; }
}