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

8 lines
199 B
C#

using Microsoft.SharePoint.Client;
namespace console_spo_utils.Interfaces.Services;
public interface IProjectDocLibraryService
{
void Create(string projName, ClientContext subSiteContext);
}