updated db schema def

This commit is contained in:
2025-07-22 11:34:56 -04:00
parent a6f4a89b47
commit 3c35e7f60c
515 changed files with 272693 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
using System;
using System.Windows.Forms;
namespace CCNetControls
{
public partial class ManuscriptLogin : Form
{
public ManuscriptLogin()
{
InitializeComponent();
}
public event EventHandler<EventArgs> LoginCompleted;
private void button1_Click(object sender, EventArgs e)
{
LoginCompleted.Invoke(new string[] { txt_UserName.Text, txt_Password.Text }, e);
this.Close();
}
}
}