aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/SideChains/RealTimeGraphEx/Models/RealTimeGraphExColumn.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Software/Visual_Studio/SideChains/RealTimeGraphEx/Models/RealTimeGraphExColumn.cs')
-rw-r--r--Software/Visual_Studio/SideChains/RealTimeGraphEx/Models/RealTimeGraphExColumn.cs24
1 files changed, 24 insertions, 0 deletions
diff --git a/Software/Visual_Studio/SideChains/RealTimeGraphEx/Models/RealTimeGraphExColumn.cs b/Software/Visual_Studio/SideChains/RealTimeGraphEx/Models/RealTimeGraphExColumn.cs
new file mode 100644
index 000000000..2a328a2fa
--- /dev/null
+++ b/Software/Visual_Studio/SideChains/RealTimeGraphEx/Models/RealTimeGraphExColumn.cs
@@ -0,0 +1,24 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+
+namespace RealTimeGraphEx.Models
+{
+ public class RealTimeGraphExColumn
+ {
+ public RealTimeGraphExColumn(int x, int y, int right, int bottom)
+ {
+ X = x;
+ Y = y;
+ Right = right;
+ Bottom = bottom;
+ }
+
+ public int X { get; set; }
+ public int Y { get; set; }
+ public int Right { get; set; }
+ public int Bottom { get; set; }
+ }
+}