Pluralize LibationWinForms

This commit is contained in:
Robert McRackan 2019-12-10 10:45:14 -05:00
parent 123a32ff9b
commit 2fa5170f28
55 changed files with 41 additions and 41 deletions

View file

@ -1,21 +0,0 @@
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;
}
}
}