feat(repo): cosmetic catalog id enumerations on ICollectionRepository

This commit is contained in:
gamer147
2026-05-29 13:29:19 -04:00
parent b4f6992918
commit be19c0ad8d
3 changed files with 44 additions and 0 deletions

View File

@@ -5,4 +5,8 @@ namespace SVSim.Database.Repositories.Collectibles;
public interface ICollectionRepository
{
Task<List<LeaderSkinEntry>> GetLeaderSkins();
Task<List<int>> GetAllSleeveIds();
Task<List<int>> GetAllEmblemIds();
Task<List<int>> GetAllDegreeIds();
Task<List<int>> GetAllMyPageBackgroundIds();
}