Files
2025-02-26 23:42:19 +01:00

9 lines
272 B
C#

namespace OpenWarehouse.auth.lib.Model.Account;
public class ChangePassword
{
public string? Password { get; set; }
public string? NewPassword1 { get; set; }
public string? NewPassword2 { get; set; }
public bool LogOutAllSession { get; set; }
}