9 lines
272 B
C#
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; }
|
|
} |