Restructure
This commit is contained in:
parent
437cc0e0e1
commit
da91200c74
16 changed files with 43 additions and 110 deletions
17
ConfigSystem/IConfig.cs
Normal file
17
ConfigSystem/IConfig.cs
Normal file
|
@ -0,0 +1,17 @@
|
|||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace Bot
|
||||
{
|
||||
public interface IConfig
|
||||
{
|
||||
float ConfigVersion { get; set; }
|
||||
|
||||
string ConfigFor { get; set; }
|
||||
|
||||
List<string> Data { get; set; }
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue