From e930a0d1884146157d52c7263551ffd2d4d831eb Mon Sep 17 00:00:00 2001 From: Paul Schneider Date: Sat, 22 Oct 2016 18:45:59 +0200 Subject: [PATCH] these lines have an id @server side --- BookAStar/BookAStar/Model/Workflow/BillingLine.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/BookAStar/BookAStar/Model/Workflow/BillingLine.cs b/BookAStar/BookAStar/Model/Workflow/BillingLine.cs index ee47feed..21335a65 100644 --- a/BookAStar/BookAStar/Model/Workflow/BillingLine.cs +++ b/BookAStar/BookAStar/Model/Workflow/BillingLine.cs @@ -6,6 +6,7 @@ namespace BookAStar.Model.Workflow { public class BillingLine : IBillingLine { + public long Id { get; set; } public string Description { get; set; } public TimeSpan Duration { get; set; } public int Count { get; set; } = 1;