blob: 40386566e7dc54bfd9810d0731ccc038d9c4417e (
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.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; }
}
}
|