Integrate audible API draft 1. incomplete

This commit is contained in:
Robert McRackan 2019-10-21 16:27:28 -04:00
parent 37708bece1
commit cecbea1e9f
30 changed files with 1313 additions and 226 deletions

View file

@ -0,0 +1,21 @@
using System;
using System.Windows.Forms;
namespace LibationWinForm.Dialogs.Login
{
public partial class _2faCodeDialog : Form
{
public string Code { get; private set; }
public _2faCodeDialog()
{
InitializeComponent();
}
private void submitBtn_Click(object sender, EventArgs e)
{
Code = this.codeTb.Text;
DialogResult = DialogResult.OK;
}
}
}