mirror of
https://git.alee14.me/shiftos-archive/ShiftOS_TheReturn.git
synced 2025-01-23 10:12:16 +00:00
27 lines
577 B
C#
27 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; }
|
|||
|
}
|
|||
|
}
|