11 lines
432 B
C#
11 lines
432 B
C#
using Microsoft.SharePoint.Client;
|
|
|
|
namespace console_spo_utils.Interfaces.Services;
|
|
|
|
internal interface IOneNoteService
|
|
{
|
|
public bool CreateFolderInsideProject(string projName, ClientContext ctx);
|
|
public bool CreateFolderInsideQuotation(string quotationName, ClientContext ctx);
|
|
public bool CreateFolderInsideNonCompliance(string quotationName, ClientContext ctx);
|
|
public void EnableFeature(ClientContext ctx);
|
|
} |