yavsc/YavscLib/Workflow/IQuery.cs

17 lines
359 B
C#

7 years ago
namespace YavscLib.Models.Workflow
8 years ago
{
using System.Collections.Generic;
using YavscLib;
using YavscLib.Billing;
8 years ago
public interface IQuery: IBaseTrackedEntity, IBillable
8 years ago
{
QueryStatus Status { get; set; }
}
public interface IBillable {
string Description { get; set; }
List<IBillItem> GetBillItems();
8 years ago
}
8 years ago
}