aboutsummaryrefslogtreecommitdiff
path: root/ShiftOS.Objects/Job.cs
diff options
context:
space:
mode:
authorMichael <[email protected]>2017-01-17 17:08:27 -0500
committerMichael <[email protected]>2017-01-17 17:08:33 -0500
commitb348a76db785c040d957f055ba9cc8569bf0c285 (patch)
tree376a1884c36eb7a0929d5c88078c94986defecbc /ShiftOS.Objects/Job.cs
parenta93dd80d4e2f4c97284a1d7bc24b0240358bdd25 (diff)
downloadshiftos_thereturn-b348a76db785c040d957f055ba9cc8569bf0c285.tar.gz
shiftos_thereturn-b348a76db785c040d957f055ba9cc8569bf0c285.tar.bz2
shiftos_thereturn-b348a76db785c040d957f055ba9cc8569bf0c285.zip
Out-of-box experience work
It's definitely not working right now. I wouldn't delete your save. I have to implement the tutorial before the OOBE will let you into the game.
Diffstat (limited to 'ShiftOS.Objects/Job.cs')
-rw-r--r--ShiftOS.Objects/Job.cs26
1 files changed, 26 insertions, 0 deletions
diff --git a/ShiftOS.Objects/Job.cs b/ShiftOS.Objects/Job.cs
new file mode 100644
index 0000000..25d58b5
--- /dev/null
+++ b/ShiftOS.Objects/Job.cs
@@ -0,0 +1,26 @@
+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 class JobTask
+ {
+ public string Name { get; set; }
+ public string Description { get; set; }
+ public int Reward { get; set; }
+
+ public bool Completed { get; set; }
+ }
+}