10 lines
233 B
C#
10 lines
233 B
C#
using Microsoft.Extensions.Logging;
|
|
using Microsoft.SharePoint.Client;
|
|
|
|
namespace console_spo_utils.Interfaces.Services;
|
|
|
|
internal interface IProjectYearService
|
|
{
|
|
public void CreateList(string listTitle, ClientContext ctx);
|
|
|
|
} |