Refactored project layout to correct onion model

This commit is contained in:
Fishandchips321 2025-12-22 20:23:27 +00:00
parent 902785a377
commit e9f444e5b4
35 changed files with 623 additions and 35 deletions

View file

@ -0,0 +1,8 @@
using JellyGlass.Core.Entities;
namespace JellyGlass.Core.Interfaces;
public interface IServerRepository
{
public Task<Server[]> GetServers();
}