8 lines
198 B
C#
8 lines
198 B
C#
using Microsoft.SharePoint.Client;
|
|
|
|
namespace library_spo_utils.Interfaces.Services;
|
|
|
|
internal interface IQuotationDocLibraryService
|
|
{
|
|
public void Create(string libName, ClientContext ctx);
|
|
} |