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); }