diff --git a/BookAStar/BookAStar/Model/Workflow/Estimate.cs b/BookAStar/BookAStar/Model/Workflow/Estimate.cs index 01af0385..0049345e 100644 --- a/BookAStar/BookAStar/Model/Workflow/Estimate.cs +++ b/BookAStar/BookAStar/Model/Workflow/Estimate.cs @@ -1,23 +1,13 @@ -using System; -using System.Collections.Generic; +using System.Collections.Generic; using System.Linq; -using System.Text; -using System.Threading.Tasks; namespace BookAStar.Model.Workflow { public partial class Estimate { public long Id { get; set; } - + public long? CommandId { get; set; } - /// - /// A command is not required to create - /// an estimate, - /// it will result in a new estimate template - /// - /// - public BookQueryPage Query { get; set; } public string Description { get; set; } public int? Status { get; set; } public string Title { get; set; } @@ -51,7 +41,6 @@ namespace BookAStar.Model.Workflow } public string OwnerId { get; set; } - private RemoteEntity BookQueries; public string ClientId { get; set; } }