Initial commit. Added a helper class for easy access to the app.config settings.

This commit is contained in:
Admin
2020-11-04 17:13:38 -06:00
commit 7b9744670f
15 changed files with 669 additions and 0 deletions
+20
View File
@@ -0,0 +1,20 @@
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace DataOrganizer
{
public partial class MainForm : Form
{
public MainForm()
{
InitializeComponent();
}
}
}