From 5c9629c4c61d823dfc49693355072b38c09ffb7a Mon Sep 17 00:00:00 2001 From: Michael Date: Wed, 18 Jan 2017 21:07:57 -0500 Subject: [PATCH] Extension commit to my previous one because git screwed up. --- ShiftOS.Objects/Job.cs | 4 ++-- ShiftOS.WinForms/ShiftOS.WinForms.csproj | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/ShiftOS.Objects/Job.cs b/ShiftOS.Objects/Job.cs index 25d58b5..00ac50d 100644 --- a/ShiftOS.Objects/Job.cs +++ b/ShiftOS.Objects/Job.cs @@ -15,12 +15,12 @@ namespace ShiftOS.Objects public string Author { get; set; } } - public class JobTask + public abstract class JobTask { public string Name { get; set; } public string Description { get; set; } public int Reward { get; set; } - public bool Completed { get; set; } + public abstract bool IsComplete { get; } } } diff --git a/ShiftOS.WinForms/ShiftOS.WinForms.csproj b/ShiftOS.WinForms/ShiftOS.WinForms.csproj index c58c7bf..739719b 100644 --- a/ShiftOS.WinForms/ShiftOS.WinForms.csproj +++ b/ShiftOS.WinForms/ShiftOS.WinForms.csproj @@ -191,6 +191,7 @@ FakeSetupScreen.cs + Form