summaryrefslogtreecommitdiff
path: root/DSACore/Models/Command.cs
blob: 2630d47043ef3de2643bf82b50bd7b9c84a8c4ad (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;

namespace DSACore.Models
{
    public class Command
    {
        public ulong GroupId { get; set; } = 0;
        public ulong CharId { get; set; } 
        public string Name { get; set; }
        public string CmdIdentifier { get; set; }
        public List<string> CmdTexts { get; set; }
        public string CmdText => CmdTexts.First();
        public int Cmdmodifier { get; set; } = 0;
        public bool IsDm { get; set; } = false;
    }
}