34 lines
552 B
C#
34 lines
552 B
C#
|
9 years ago
|
using System;
|
||
|
9 years ago
|
using Yavsc.Interfaces.Workflow;
|
||
|
|
using Yavsc.Models.Market;
|
||
|
|
|
||
|
9 years ago
|
namespace Yavsc.Models.Workflow
|
||
|
9 years ago
|
{
|
||
|
|
|
||
|
9 years ago
|
public class Query<P>: IBaseTrackedEntity where P : BaseProduct
|
||
|
9 years ago
|
{
|
||
|
9 years ago
|
public DateTime DateCreated
|
||
|
|
{
|
||
|
|
get; set;
|
||
|
|
}
|
||
|
|
|
||
|
|
public DateTime DateModified
|
||
|
|
{
|
||
|
|
get; set;
|
||
|
|
}
|
||
|
|
|
||
|
|
public string UserCreated
|
||
|
|
{
|
||
|
|
get; set;
|
||
|
|
}
|
||
|
|
|
||
|
|
public string UserModified
|
||
|
|
{
|
||
|
|
get; set;
|
||
|
|
}
|
||
|
|
|
||
|
9 years ago
|
QueryStatus Status { get; set; }
|
||
|
|
}
|
||
|
|
|
||
|
|
}
|