cleaning
This commit is contained in:
parent
731585830f
commit
6c314caec0
5 changed files with 5 additions and 182 deletions
33
Yavsc/Models/Workflow/Query.cs
Normal file
33
Yavsc/Models/Workflow/Query.cs
Normal 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; }
|
||||
}
|
||||
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue