23 lines
467 B
C#
23 lines
467 B
C#
|
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;
|
||
|
}
|
||
|
}
|
||
|
}
|