using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace RainmeterStudio.Core
{
///
/// The assembly will be loaded as a plug-in.
///
/// RainmeterStudio will load assemblies with this flag as plugins.
[AttributeUsage(AttributeTargets.Assembly)]
public class RainmeterStudioPluginAttribute : Attribute
{
}
}