Integrate audible API draft 1. incomplete
This commit is contained in:
parent
37708bece1
commit
cecbea1e9f
30 changed files with 1313 additions and 226 deletions
21
LibationWinForm/UNTESTED/Dialogs/Login/_2faCodeDialog.cs
Normal file
21
LibationWinForm/UNTESTED/Dialogs/Login/_2faCodeDialog.cs
Normal 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;
|
||||
}
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue