yavsc/Yavsc/Models/Workflow/Query.cs

33 lines
552 B
C#
Raw Normal View History

2017-01-20 14:19:23 +01:00
using System;
2016-11-04 13:55:48 +01:00
using Yavsc.Interfaces.Workflow;
using Yavsc.Models.Market;
2017-02-06 17:31:44 +01:00
namespace Yavsc.Models.Workflow
2016-11-04 13:55:48 +01:00
{
2017-01-20 14:19:23 +01:00
public class Query<P>: IBaseTrackedEntity where P : BaseProduct
2016-11-04 13:55:48 +01:00
{
2017-01-20 14:19:23 +01:00
public DateTime DateCreated
{
get; set;
}
public DateTime DateModified
{
get; set;
}
public string UserCreated
{
get; set;
}
public string UserModified
{
get; set;
}
2016-11-04 13:55:48 +01:00
QueryStatus Status { get; set; }
}
}