From b348a76db785c040d957f055ba9cc8569bf0c285 Mon Sep 17 00:00:00 2001 From: Michael Date: Tue, 17 Jan 2017 17:08:27 -0500 Subject: 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. --- ShiftOS.Objects/Job.cs | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 ShiftOS.Objects/Job.cs (limited to 'ShiftOS.Objects/Job.cs') 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 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; } + } +} -- cgit v1.2.3