mirror of
https://github.com/lidarr/lidarr.git
synced 2025-07-16 10:03:51 -07: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; }
|
|
}
|
|
} |