11 lines
339 B
C#
11 lines
339 B
C#
using SVSim.Database.Models;
|
|
|
|
namespace SVSim.Database.Repositories.Globals;
|
|
|
|
public interface IGlobalsRepository
|
|
{
|
|
Task<List<ClassExpEntry>> GetClassExpCurve();
|
|
Task<List<BattlefieldEntry>> GetBattlefields(bool onlyOpen);
|
|
Task<GameConfiguration> GetGameConfiguration(string key);
|
|
Task<List<RankInfoEntry>> GetRankInfo();
|
|
} |