using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
namespace WhatsappClient
{
public partial class Form_Main : Form
{
private WhatsappAccount Account;
public Form_Main(WhatsappAccount _Account)
{
InitializeComponent();
Account = _Account;
}
private void button1_Click(object sender, EventArgs e)
{
WhatsAppProtocol Prot = new WhatsAppProtocol(Account);
Prot.Connect();
Prot.Login();
}
}
}