aboutsummaryrefslogtreecommitdiff
path: root/ShiftOS.Objects/Job.cs
diff options
context:
space:
mode:
authorMichael <[email protected]>2017-07-13 21:30:04 -0400
committerMichael <[email protected]>2017-07-13 21:30:04 -0400
commite929a9f5105c00b0a3a2b4e75a876bbb95bbfa7b (patch)
treeb88810b1dadf0c3893cadeaebe84351784ef18de /ShiftOS.Objects/Job.cs
parente92af1bc7fe5cd5860206061f4ff261b3339cc51 (diff)
downloadshiftos_thereturn-e929a9f5105c00b0a3a2b4e75a876bbb95bbfa7b.tar.gz
shiftos_thereturn-e929a9f5105c00b0a3a2b4e75a876bbb95bbfa7b.tar.bz2
shiftos_thereturn-e929a9f5105c00b0a3a2b4e75a876bbb95bbfa7b.zip
Delete a LOT of obsolete code
Diffstat (limited to 'ShiftOS.Objects/Job.cs')
-rw-r--r--ShiftOS.Objects/Job.cs50
1 files changed, 0 insertions, 50 deletions
diff --git a/ShiftOS.Objects/Job.cs b/ShiftOS.Objects/Job.cs
deleted file mode 100644
index d155322..0000000
--- a/ShiftOS.Objects/Job.cs
+++ /dev/null
@@ -1,50 +0,0 @@
-/*
- * MIT License
- *
- * Copyright (c) 2017 Michael VanOverbeek and ShiftOS devs
- *
- * Permission is hereby granted, free of charge, to any person obtaining a copy
- * of this software and associated documentation files (the "Software"), to deal
- * in the Software without restriction, including without limitation the rights
- * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
- * copies of the Software, and to permit persons to whom the Software is
- * furnished to do so, subject to the following conditions:
- *
- * The above copyright notice and this permission notice shall be included in all
- * copies or substantial portions of the Software.
- *
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
- * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
- * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
- * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
- * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
- * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
- * SOFTWARE.
- */
-
-using System;
-using System.Collections.Generic;
-using System.Linq;
-using System.Text;
-using System.Threading.Tasks;
-
-namespace ShiftOS.Objects
-
-{
- public class Job
- {
- public string Name { get; set; }
- public string Description { get; set; }
- public List<JobTask> Tasks { get; set; }
- public string Author { get; set; }
- }
-
- public abstract class JobTask
- {
- public string Name { get; set; }
- public string Description { get; set; }
- public int Reward { get; set; }
-
- public abstract bool IsComplete { get; }
- }
-}