summaryrefslogtreecommitdiff
path: root/DiscoBot/Auxiliary/CommandInfo.cs
blob: b08ba1b15cbb96a371b83a3f208295d50d2d64ad (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;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace DiscoBot.Auxiliary
{
    public struct CommandInfo
    {
        public CommandInfo(string name, string description, string scope)
        {
            this.Name = name;
            this.Scope = scope;
            this.Description = description;
        }

        public string Name { get; }

        public string Scope { get; }

        public string Description { get; }
    }
}