1
0
mirror of synced 2025-01-30 11:57:23 +01:00

8 lines
217 B
C#
Raw Normal View History

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