Adding properties for DateFilter.

This commit is contained in:
Jonathan Preddy
2014-07-22 11:22:33 -04:00
parent 45cda907f7
commit b15f36d33c
2 changed files with 6 additions and 0 deletions

View File

@@ -60,6 +60,7 @@
<ItemGroup>
<Content Include="testconf.xml">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
<SubType>Designer</SubType>
</Content>
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />

View File

@@ -7,6 +7,11 @@ namespace TimberWinR.Filters
{
public class DateFilter : FilterBase
{
public string Field { get; private set; }
public string Target { get; private set; }
public bool ConvertToUTC { get; private set; }
public List<string> Pattern { get; private set; }
public override void Apply(Newtonsoft.Json.Linq.JObject json)
{
throw new NotImplementedException();