mirror of
https://github.com/chibicitiberiu/rainmeter-studio.git
synced 2024-02-24 04:33:31 +00:00
19 lines
365 B
C#
19 lines
365 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace RainmeterStudio.Core.Editor.Features
|
|
{
|
|
public class ToolboxItem
|
|
{
|
|
public string Name { get; private set; }
|
|
|
|
public ToolboxItem(string name)
|
|
{
|
|
Name = name;
|
|
}
|
|
}
|
|
}
|