This commit is contained in:
Paul Schneider 2017-02-06 17:31:44 +01:00
commit 6c314caec0
5 changed files with 5 additions and 182 deletions

View file

@ -0,0 +1,33 @@
using System;
using Yavsc.Interfaces.Workflow;
using Yavsc.Models.Market;
namespace Yavsc.Models.Workflow
{
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; }
}
}