21 lines
429 B
C#
21 lines
429 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace PistonAPI
|
|
{
|
|
public class PluginAttribute : Attribute
|
|
{
|
|
public string Name { get; }
|
|
public bool Reloadable { get; }
|
|
|
|
public PluginAttribute(string name, bool reloadable = false)
|
|
{
|
|
Name = name;
|
|
Reloadable = reloadable;
|
|
}
|
|
}
|
|
}
|