This repository has been archived on 2025-01-01. You can view files and clone it, but cannot push or open issues or pull requests.
ShiftOS_TheReturn/ShiftOS.WinForms/DesktopWidgetAttribute.cs

27 lines
629 B
C#
Raw Permalink Normal View History

2017-04-16 13:31:23 -04:00
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;
}
2017-04-16 14:18:02 -04:00
public override string ToString()
{
return this.Name + "_" + Description;
}
2017-04-16 13:31:23 -04:00
}
}