mirror of
https://github.com/oqtane/oqtane.framework.git
synced 2025-05-29 16:23:05 +00:00
17 lines
505 B
C#
17 lines
505 B
C#
using Oqtane.Models;
|
|
using System.Collections.Generic;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Oqtane.Services
|
|
{
|
|
public interface IFolderService
|
|
{
|
|
Task<List<Folder>> GetFoldersAsync(int SiteId);
|
|
Task<Folder> GetFolderAsync(int FolderId);
|
|
Task<Folder> AddFolderAsync(Folder Folder);
|
|
Task<Folder> UpdateFolderAsync(Folder Folder);
|
|
Task UpdateFolderOrderAsync(int SiteId, int FolderId, int? ParentId);
|
|
Task DeleteFolderAsync(int FolderId);
|
|
}
|
|
}
|