27 lines
494 B
C#
27 lines
494 B
C#
using ModVersionChecker.enums;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace ModVersionChecker.managers.interfaces
|
|
{
|
|
public interface IAppRepository
|
|
{
|
|
|
|
List<App> Load();
|
|
|
|
void Save(List<App> apps);
|
|
|
|
public void Insert(App app);
|
|
|
|
public void Update(App app);
|
|
|
|
void Delete(string id);
|
|
|
|
void UpdateStatus(App app, AppStatus status);
|
|
|
|
}
|
|
}
|