Add bot source
This commit is contained in:
parent
020d43b81c
commit
437cc0e0e1
14 changed files with 1788 additions and 0 deletions
20
Source/ConfigSystem/BaseConfig.cs
Normal file
20
Source/ConfigSystem/BaseConfig.cs
Normal file
|
@ -0,0 +1,20 @@
|
|||
/*
|
||||
Copyright © 2019 Tara Piccari (Aria; Tashia Redrose)
|
||||
Licensed under the AGPL-3.0
|
||||
*/
|
||||
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace Bot
|
||||
{
|
||||
class BaseConfig : IConfig
|
||||
{
|
||||
public float ConfigVersion { get; set; }
|
||||
public string ConfigFor { get; set; }
|
||||
public List<string> Data { get; set; }
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue