aboutsummaryrefslogtreecommitdiff
path: root/ShiftOS_TheReturn/WinOpenAttribute.cs
blob: 152ce72cec927a3a3255303def3e0d3bd5a12d99 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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;
        }
    }
}