Restructure

This commit is contained in:
Zontreck 2019-12-20 17:38:55 -07:00
parent 437cc0e0e1
commit da91200c74
16 changed files with 43 additions and 110 deletions

View file

@ -0,0 +1,15 @@
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; }
}
}