aboutsummaryrefslogtreecommitdiff
path: root/ShiftOS.Objects
diff options
context:
space:
mode:
Diffstat (limited to 'ShiftOS.Objects')
-rw-r--r--ShiftOS.Objects/Job.cs26
-rw-r--r--ShiftOS.Objects/Save.cs3
-rw-r--r--ShiftOS.Objects/ShiftOS.Objects.csproj1
3 files changed, 28 insertions, 2 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; }
+ }
+}
diff --git a/ShiftOS.Objects/Save.cs b/ShiftOS.Objects/Save.cs
index ff4bf53..787423d 100644
--- a/ShiftOS.Objects/Save.cs
+++ b/ShiftOS.Objects/Save.cs
@@ -14,9 +14,8 @@ namespace ShiftOS.Objects
public Dictionary<string, bool> Upgrades { get; set; }
public int StoryPosition { get; set; }
public string Language { get; set; }
-
+ public string MyShop { get; set; }
public List<string> CurrentLegions { get; set; }
-
public int MajorVersion { get; set; }
public int MinorVersion { get; set; }
public int Revision { get; set; }
diff --git a/ShiftOS.Objects/ShiftOS.Objects.csproj b/ShiftOS.Objects/ShiftOS.Objects.csproj
index 7013476..e9b74f7 100644
--- a/ShiftOS.Objects/ShiftOS.Objects.csproj
+++ b/ShiftOS.Objects/ShiftOS.Objects.csproj
@@ -59,6 +59,7 @@
<Compile Include="Exploit.cs" />
<Compile Include="ExploitContext.cs" />
<Compile Include="Hack.cs" />
+ <Compile Include="Job.cs" />
<Compile Include="Legion.cs" />
<Compile Include="Objects.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />