20 lines
420 B
C#
20 lines
420 B
C#
using ModVersionChecker.repository.api.dto;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace ModVersionChecker.managers.interfaces
|
|
{
|
|
public interface IFlightSimsManager
|
|
{
|
|
List<TypeResponse> Load();
|
|
void Save(TypeResponse config);
|
|
|
|
TypeResponse? GetByShortName(string id);
|
|
|
|
void DeleteAll();
|
|
}
|
|
}
|