summaryrefslogtreecommitdiff
path: root/Impostor-dev/src/Impostor.Api/Plugins/ImpostorPluginAttribute.cs
blob: b31bd4789846ac0a453d9b3f3b691836653b23c5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
using System;

namespace Impostor.Api.Plugins
{
    [AttributeUsage(AttributeTargets.Class)]
    public class ImpostorPluginAttribute : Attribute
    {
        public ImpostorPluginAttribute(string package, string name, string author, string version)
        {
            Package = package;
            Name = name;
            Author = author;
            Version = version;
        }

        public string Package { get; }

        public string Name { get; }

        public string Author { get; }

        public string Version { get; }
    }
}