Book query tracking

This commit is contained in:
Paul Schneider 2017-01-20 14:19:23 +01:00
commit 32ca008d20
8 changed files with 1514 additions and 21 deletions

View file

@ -1,11 +1,32 @@
using System;
using Yavsc.Interfaces.Workflow;
using Yavsc.Models.Market;
namespace Yavsc.Models.Billing
{
public class Query<P> where P : BaseProduct
public class Query<P>: IBaseTrackedEntity where P : BaseProduct
{
public DateTime DateCreated
{
get; set;
}
public DateTime DateModified
{
get; set;
}
public string UserCreated
{
get; set;
}
public string UserModified
{
get; set;
}
QueryStatus Status { get; set; }
}