1
0
mirror of synced 2025-02-14 01:42:34 +01:00

8 lines
217 B
C#

namespace SharedProject.Models.Requests;
public class SetPasswordRequest
{
public uint Baid { get; set; }
public string Password { get; set; } = default!;
public string Salt { get; set; } = default!;
}