aboutsummaryrefslogtreecommitdiffstats
path: root/Software/PMR/Messages/Embroidery/EmbroideryFile.proto
blob: e0775cd321ae0ae4c8212eb20fd3715ab361b22c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
syntax = "proto3";

import "Extents.proto";
import "Stitch.proto";
import "StitchColor.proto";

package Tango.PMR.Embroidery;
option java_package = "com.twine.tango.pmr.embroidery";

message EmbroideryFile
{
	string DesignName = 1;
	string FileName = 2;
	int32 StitchCount = 3;
	int32 ColorCount = 4;
	Extents Extents = 5;
	repeated StitchColor Colors = 6;
	repeated Stitch Stitches = 7;
}