ShiftOS_TheReturn/ShiftOS.Objects/Job.cs
Michael b348a76db7 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.
2017-01-17 17:08:33 -05:00

26 lines
577 B
C#

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; }
}
}