924cdd3d4b
Defined structure of project
10 lines
340 B
C#
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);
|
|
} |