mirror of
https://github.com/Sonarr/Sonarr
synced 2024-12-27 02:07:41 +00:00
12 lines
349 B
C#
12 lines
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; }
|
|||
|
}
|
|||
|
}
|