mirror of
https://github.com/octoleo/syncthing.git
synced 2024-11-06 05:17:49 +00:00
15 lines
268 B
Protocol Buffer
15 lines
268 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
package config;
|
|
|
|
import "repos/protobuf/gogoproto/gogo.proto";
|
|
|
|
import "ext.proto";
|
|
|
|
message Size {
|
|
option (gogoproto.goproto_stringer) = false;
|
|
|
|
double value = 1 [(ext.xml) = ",chardata"];
|
|
string unit = 2 [(ext.xml) = "unit,attr"];
|
|
}
|