Files
console_spo_utils/console_spo_utils/Interfaces/Services/IOneNoteService.cs
T
Kalarumeth 924cdd3d4b Major Update
Defined structure of project
2022-09-02 18:50:27 +02:00

10 lines
340 B
C#

using Microsoft.SharePoint.Client;
namespace console_spo_utils.Interfaces.Services;
public interface IOneNoteService
{
public bool CreateFolderInsideProject(string projName, ClientContext ctx);
public bool CreateFolderInsideQuotation(string quotationName, ClientContext ctx);
public void EnableFeature(ClientContext ctx);
}