/*
* by Swen Kooij aka Kirk - swenkooij@gmail.com
*/
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
/// <summary>
/// Represents a WhatsApp account
/// </summary>
class WhatsappAccount
{
/// <summary>
/// The full phone number belonging to this account.
/// </summary>
public string Phonenumber { get; set; }
/// <summary>
/// The password that belongs to this account
/// </summary>
public string Password { get; set; }
/// <summary>
/// Default class constructor
/// </summary>
/// <param name="_Phonenumber">The full phonenumber, including country code.</param>
/// <param name="_Password">The password assigned to the phone number.</param>
public WhatsappAccount(string _Phonenumber, string _Password)
{
Phonenumber = _Phonenumber;
Password = _Password;
}
}