AuthorBuddy/Services/IProjectService.cs

11 lines
323 B
C#
Raw Normal View History

2026-05-14 12:31:35 +02:00
using AuthorBuddy.Web.Models;
namespace AuthorBuddy.Web.Services;
public interface IProjectService
{
Task<int> CreateNewProjectAsync(string projectName, string rootPath);
Task<List<Project>> GetAllProjectsAsync();
Task SyncProjectFilesAsync(int projectId, string directoryPath, IProgress<string> progress);
}