21 lines
526 B
C#
21 lines
526 B
C#
using ModVersionChecker.repository.api.dto;
|
|
using ModVersionChecker.model;
|
|
|
|
|
|
namespace ModVersionChecker.service.interfaces
|
|
{
|
|
public interface IStateService
|
|
{
|
|
List<App> GetApps();
|
|
void SetApps(List<App> apps);
|
|
|
|
void UpdateApps();
|
|
List<SourceResponse> GetSources();
|
|
void SetSources(List<SourceResponse> sources);
|
|
List<TypeResponse> GetTypes();
|
|
void SetTypes(List<TypeResponse> types);
|
|
Config GetConfig();
|
|
void SetConfig(Config config);
|
|
}
|
|
}
|