namespace Funique
{
///
/// Account structure
/// ------------------------------------------------
/// 帳號結構
///
[System.Serializable]
public struct AccountData
{
///
/// Account name
/// ------------------------------------------------
/// 帳號名稱
///
public string Account;
///
/// Password
/// ------------------------------------------------
/// 密碼
///
public string Password;
}
}