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

namespace Tango.PPC.Jobs.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; }
    }
}