yavsc/Yavsc/Models/Workflow/Query.cs

34 lines
561 B
C#
Raw Normal View History

2017-01-20 14:19:23 +01:00
using System;
2016-11-04 13:55:48 +01:00
2017-02-06 17:31:44 +01:00
namespace Yavsc.Models.Workflow
2016-11-04 13:55:48 +01:00
{
2017-02-07 15:04:58 +01:00
using Interfaces.Workflow;
using Models.Market;
using YavscLib;
2016-11-04 13:55:48 +01:00
2017-02-07 15:04:58 +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; }
}
}