added Expansive

This commit is contained in:
Keivan Beigi 2013-04-15 17:07:58 -07:00
commit 6a5c10a456
8 changed files with 435 additions and 0 deletions

View file

@ -0,0 +1,12 @@
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; }
}
}