9 lines
216 B
C#
9 lines
216 B
C#
|
|
namespace PiiRedaction.Core.Configuration;
|
||
|
|
|
||
|
|
public sealed class PiiRedactionOptions
|
||
|
|
{
|
||
|
|
public const string SectionName = "PiiRedaction";
|
||
|
|
|
||
|
|
public string OnnxModelPath { get; set; } = "models/ner-model.onnx";
|
||
|
|
}
|