using SharepointToolbox.Core.Models; namespace SharepointToolbox.Services.Export; /// /// Exports permission entries to HTML format. /// Full implementation will be added in Plan 03. /// public class HtmlExportService { /// Builds an HTML string from the supplied permission entries. public string BuildHtml(IReadOnlyList entries) => throw new NotImplementedException("HtmlExportService.BuildHtml — implemented in Plan 03"); /// Writes the HTML output to a file. public Task WriteAsync(IReadOnlyList entries, string filePath, CancellationToken ct) => throw new NotImplementedException("HtmlExportService.WriteAsync — implemented in Plan 03"); }