blob: 25d58b5ba5cb1cea1570a8f7b584e59e9d00a8c6 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
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; }
}
}
|