propresenter-php/php/proto/background.proto
2026-03-01 16:12:17 +01:00

20 lines
363 B
Protocol Buffer
Executable file

syntax = "proto3";
package rv.data;
option cc_enable_arenas = true;
option csharp_namespace = "Pro.SerializationInterop.RVProtoData";
option swift_prefix = "RVData_";
import "color.proto";
import "graphicsData.proto";
message Background {
bool is_enabled = 3;
oneof Fill {
.rv.data.Color color = 1;
.rv.data.Graphics.Gradient gradient = 2;
}
}