1
0
mirror of synced 2024-11-24 15:00:16 +01:00
TaikoLocalServer/SharedProject/Models/Requests/SetPasswordRequest.cs

8 lines
217 B
C#
Raw Normal View History

2023-10-16 11:38:27 +02:00
namespace SharedProject.Models.Requests;
public class SetPasswordRequest
{
public uint Baid { get; set; }
2023-10-16 11:38:27 +02:00
public string Password { get; set; } = default!;
public string Salt { get; set; } = default!;
}