mirror of
https://github.com/chibicitiberiu/rainmeter-studio.git
synced 2024-02-24 04:33:31 +00:00
21 lines
560 B
C#
21 lines
560 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace RainmeterStudio.Core
|
|
{
|
|
/// <summary>
|
|
/// Exports a class
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// This attribute should be used to export factories, templates etc.
|
|
/// If not used, these will have to be manually exported.
|
|
/// The class marked with this flag must have a default constructor!
|
|
/// </remarks>
|
|
[AttributeUsage(AttributeTargets.Class)]
|
|
public class PluginExportAttribute : Attribute
|
|
{
|
|
}
|
|
}
|