namespace MeetingAssistant.Tests; internal static class MeetingWorkflowTestRules { public const string MaskedProfanityRedactionYaml = """ rules: - name: redact-masked-profanity on: - transcript_line: {} if: - condition: contains(transcript.line, '*****') steps: - uses: set_property property: transcript.line value: '@Model.Transcript.Line.Replace("*****", "[redacted]")' """; }