ShiftOS_TheReturn/ShiftOS.Objects/Job.cs
Michael 5c9629c4c6 Extension commit to my previous one
because git screwed up.
2017-01-18 21:07:57 -05:00

26 lines
591 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 abstract class JobTask
{
public string Name { get; set; }
public string Description { get; set; }
public int Reward { get; set; }
public abstract bool IsComplete { get; }
}
}