blob: 8b9af7c99dbe0d64f67c6ec01d402abd09195564 (
plain)
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
27
28
29
30
31
32
33
34
|
syntax = "proto3";
import "JobFileSegment.proto";
package Tango.PMR.Exports;
option java_package = "com.twine.tango.pmr.exports";
message JobFile
{
string Name = 1;
string Description = 2;
bool EnableInterSegment = 3;
double InterSegmentLength = 4;
string RmlGuid = 5;
string WindingMethodGuid = 6;
string SpoolTypeGuid = 7;
bool EnableLubrication = 8;
bool HasEmbroideryFile = 9;
bytes EmbroideryFileData = 10;
string EmbroideryFileName = 11;
bytes EmbroideryJpeg = 12;
string ColorSpaceGuid = 13;
int32 NumberOfUnits = 14;
int32 Type = 15;
string Customer = 16;
int32 SpoolsDistribution = 17;
int32 NumberOfHeads = 18;
int32 SampleUnitsOrMeters = 19;
double LengthPercentageFactor = 20;
repeated JobFileSegment Segments = 21;
string ColorCatalogGuid = 22;
int32 Version = 23;
int32 NumberOfSpools = 24;
}
|