1
0
mirror of synced 2025-01-29 19:37:25 +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!;
}