From f30dcf5ef41d54c588d7b42c48be8d941abba72e Mon Sep 17 00:00:00 2001 From: Michael Date: Sun, 8 Jan 2017 09:57:10 -0500 Subject: Initial upload --- ShiftOS_TheReturn/WinOpenAttribute.cs | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 ShiftOS_TheReturn/WinOpenAttribute.cs (limited to 'ShiftOS_TheReturn/WinOpenAttribute.cs') diff --git a/ShiftOS_TheReturn/WinOpenAttribute.cs b/ShiftOS_TheReturn/WinOpenAttribute.cs new file mode 100644 index 0000000..152ce72 --- /dev/null +++ b/ShiftOS_TheReturn/WinOpenAttribute.cs @@ -0,0 +1,18 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace ShiftOS.Engine +{ + public class WinOpenAttribute : Attribute + { + public string ID { get; private set; } + + public WinOpenAttribute (string id) + { + ID = id; + } + } +} -- cgit v1.2.3