aboutsummaryrefslogtreecommitdiff
path: root/source/WindowsFormsApplication1/Connection.cs
diff options
context:
space:
mode:
Diffstat (limited to 'source/WindowsFormsApplication1/Connection.cs')
-rw-r--r--source/WindowsFormsApplication1/Connection.cs39
1 files changed, 0 insertions, 39 deletions
diff --git a/source/WindowsFormsApplication1/Connection.cs b/source/WindowsFormsApplication1/Connection.cs
deleted file mode 100644
index b322581..0000000
--- a/source/WindowsFormsApplication1/Connection.cs
+++ /dev/null
@@ -1,39 +0,0 @@
-using System;
-using System.Collections.Generic;
-using System.ComponentModel;
-using System.Drawing;
-using System.Data;
-using System.Linq;
-using System.Text;
-using System.Threading.Tasks;
-using System.Windows.Forms;
-
-namespace ShiftOS
-{
- public partial class Connection : UserControl
- {
- public Connection()
- {
- InitializeComponent();
- }
-
- Computer conleft;
- Computer conright;
-
- public Computer ConnectionLeft
- {
- get
- {
- return conleft;
- }
- }
-
- public Computer ConnectionRight
- {
- get
- {
- return conright;
- }
- }
- }
-}