refactors
This commit is contained in:
@@ -7,7 +7,7 @@ using System.Threading.Tasks;
|
||||
|
||||
namespace ModVersionChecker.managers.interfaces
|
||||
{
|
||||
public interface IAppsManager
|
||||
public interface IAppRepository
|
||||
{
|
||||
|
||||
List<App> Load();
|
@@ -7,7 +7,7 @@ using System.Threading.Tasks;
|
||||
|
||||
namespace ModVersionChecker.managers.interfaces
|
||||
{
|
||||
public interface IAppStatusManager
|
||||
public interface IAppStatusRepository
|
||||
{
|
||||
List<AppStatus> Load();
|
||||
void Save(List<AppStatus> appStatuses);
|
@@ -7,7 +7,7 @@ using System.Threading.Tasks;
|
||||
|
||||
namespace ModVersionChecker.managers.interfaces
|
||||
{
|
||||
public interface IConfigManager
|
||||
public interface IConfigRepository
|
||||
{
|
||||
Config Load();
|
||||
void Save(Config config);
|
@@ -2,7 +2,7 @@
|
||||
|
||||
namespace ModVersionChecker.managers.interfaces
|
||||
{
|
||||
public interface ITypeManager
|
||||
public interface ITypeConfigRepository
|
||||
{
|
||||
List<TypeConfig> GetTypeConfigs();
|
||||
void SaveTypeConfigs(List<TypeConfig> types);
|
@@ -7,7 +7,7 @@ using System.Threading.Tasks;
|
||||
|
||||
namespace ModVersionChecker.managers.interfaces
|
||||
{
|
||||
public interface IFlightSimsManager
|
||||
public interface ITypeRepository
|
||||
{
|
||||
List<TypeResponse> Load();
|
||||
void Save(TypeResponse config);
|
Reference in New Issue
Block a user