mirror of
https://github.com/rmcrackan/Libation.git
synced 2026-02-07 20:52:32 -05:00
14 lines
207 B
C#
14 lines
207 B
C#
using System;
|
|
using System.Windows.Forms;
|
|
|
|
namespace WinFormsDesigner.Dialogs
|
|
{
|
|
public partial class AccountsDialog : Form
|
|
{
|
|
public AccountsDialog(Form1 parent)
|
|
{
|
|
InitializeComponent();
|
|
}
|
|
}
|
|
}
|