Code needed for Change Master Password
This commit is contained in:
22
c_micasad/lib/common/ResetMasterPassword.cs
Normal file
22
c_micasad/lib/common/ResetMasterPassword.cs
Normal file
@@ -0,0 +1,22 @@
|
||||
using System;
|
||||
|
||||
namespace Novell.CASA.MiCasa.Common
|
||||
{
|
||||
/// <summary>
|
||||
/// Summary description for ResetMasterPassword.
|
||||
/// </summary>
|
||||
///
|
||||
[Serializable]
|
||||
public class ResetMasterPassword
|
||||
{
|
||||
public string m_currentPassword;
|
||||
public string m_newPassword;
|
||||
public int rcode = 0;
|
||||
|
||||
public ResetMasterPassword(string currentPassword, string newPassword)
|
||||
{
|
||||
m_currentPassword = currentPassword;
|
||||
m_newPassword = newPassword;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user