Some refactorings

This commit is contained in:
2020-03-23 00:55:54 +01:00
parent bf67841d48
commit 70c6a28e54
5 changed files with 35 additions and 18 deletions

14
TrackerLibrary/Enums.cs Normal file
View File

@ -0,0 +1,14 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace TrackerLibrary
{
public enum DatabaseType
{
Sql,
TextFile
}
}