9 lines
267 B
C#
9 lines
267 B
C#
using library_spo_utils.Enums;
|
|
using Microsoft.SharePoint.Client;
|
|
|
|
namespace library_spo_utils.Interfaces.Services;
|
|
|
|
internal interface IFieldEntryDataUpdate
|
|
{
|
|
public void FieldUpdate(ClientContext ctx, string listName, string element, FieldUpdateType type);
|
|
} |