blob: 8d3706fa18c8dd0f110e77f5d837e51063652e96 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
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;
}
public override string ToString()
{
return this.Name + "_" + Description;
}
}
}
|