mirror of
https://github.com/Readarr/Readarr
synced 2025-12-28 11:13:22 +01:00
12 lines
No EOL
349 B
C#
12 lines
No EOL
349 B
C#
using System;
|
|
|
|
namespace NzbDrone.Common.Expansive
|
|
{
|
|
internal class PatternStyle
|
|
{
|
|
public string TokenMatchPattern { get; set; }
|
|
public Func<string, string> TokenFilter { get; set; }
|
|
public Func<string, string> TokenReplaceFilter { get; set; }
|
|
public Func<string, string> OutputFilter { get; set; }
|
|
}
|
|
} |