10 lines
144 B
Protocol Buffer
10 lines
144 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
import "image.proto";
|
|
|
|
message Index {
|
|
repeated Image images = 1;
|
|
optional string title = 2;
|
|
optional string desc = 3;
|
|
}
|