aboutsummaryrefslogtreecommitdiff
path: root/ShiftOS.WinForms/DesktopWidgetAttribute.cs
blob: 28d50ac095a87b4f32c3eb1d8dbf05af45e1be2e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace ShiftOS.WinForms
{
    [AttributeUsage(AttributeTargets.Class, AllowMultiple = false)]
    public class DesktopWidgetAttribute : Attribute
    {
        public string Name { get; set; }
        public string Description { get; set; }
        
        public DesktopWidgetAttribute(string n, string desc)
        {
            Name = n;
            Description = desc;
        }
    }
}