6 lines
158 B
C#
6 lines
158 B
C#
|
|
namespace PiiRedaction.Core.Models;
|
||
|
|
|
||
|
|
public sealed record RedactionResult(
|
||
|
|
string SanitizedText,
|
||
|
|
IReadOnlyDictionary<string, string> PlaceholderMap);
|