aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/PPC/Tango.PPC.Common/Resume/JobResumeModel.cs
blob: db5d4d3d90bfa174dc774e32dddc8a3fa5dfce79 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
using LiteDB;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace Tango.PPC.Common.Resume
{
    public class JobResumeModel
    {
        [BsonId]
        public String JobGuid { get; set; }

        public int RemainingUnits { get; set; }

        public double GlobalStartPosition { get; set; }

        public double FirstUnitStartPosition { get; set; }

        public double ResumeProgress { get; set; }
    }
}