using AuthorBuddy.Web.Models; namespace AuthorBuddy.Web.Services; public interface IProjectService { Task CreateNewProjectAsync(string projectName, string rootPath); Task> GetAllProjectsAsync(); Task SyncProjectFilesAsync(int projectId, string directoryPath, IProgress progress); }