mirror of
https://github.com/chibicitiberiu/rainmeter-studio.git
synced 2024-02-24 04:33:31 +00:00
17 lines
439 B
C#
17 lines
439 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace RainmeterStudio.Core
|
|
{
|
|
/// <summary>
|
|
/// The assembly will be loaded as a plug-in.
|
|
/// </summary>
|
|
/// <remarks>RainmeterStudio will load assemblies with this flag as plugins.</remarks>
|
|
[AttributeUsage(AttributeTargets.Assembly)]
|
|
public class RainmeterStudioPluginAttribute : Attribute
|
|
{
|
|
}
|
|
}
|