mirror of
https://github.com/Sonarr/Sonarr
synced 2024-12-26 09:47:39 +00: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; }
|
|
}
|
|
} |