propresenter-php/proto/musicKeyScale.proto
Thorsten Bus 22ba4aff7d refactor: make repo Composer-compatible by moving php/ to root and ref/ to doc/reference_samples
- Move src/, tests/, bin/, generated/, proto/, composer.json, composer.lock, phpunit.xml from php/ to repo root
- Move ref/ to doc/reference_samples/ for better organization
- Remove vendor/ from git tracking (now properly gitignored)
- Update all test file paths (dirname adjustments and ref/ -> doc/reference_samples/)
- Update all documentation paths (AGENTS.md, doc/*.md)
- Remove php.bak/ directory
- All 252 tests pass
2026-03-30 13:26:29 +02:00

43 lines
930 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_";
message MusicKeyScale {
enum MusicKey {
MUSIC_KEY_A_FLAT = 0;
MUSIC_KEY_A = 1;
MUSIC_KEY_A_SHARP = 2;
MUSIC_KEY_B_FLAT = 3;
MUSIC_KEY_B = 4;
MUSIC_KEY_B_SHARP = 5;
MUSIC_KEY_C_FLAT = 6;
MUSIC_KEY_C = 7;
MUSIC_KEY_C_SHARP = 8;
MUSIC_KEY_D_FLAT = 9;
MUSIC_KEY_D = 10;
MUSIC_KEY_D_SHARP = 11;
MUSIC_KEY_E_FLAT = 12;
MUSIC_KEY_E = 13;
MUSIC_KEY_E_SHARP = 14;
MUSIC_KEY_F_FLAT = 15;
MUSIC_KEY_F = 16;
MUSIC_KEY_F_SHARP = 17;
MUSIC_KEY_G_FLAT = 18;
MUSIC_KEY_G = 19;
MUSIC_KEY_G_SHARP = 20;
}
enum MusicScale {
MUSIC_SCALE_MAJOR = 0;
MUSIC_SCALE_MINOR = 1;
}
.rv.data.MusicKeyScale.MusicKey music_key = 1;
.rv.data.MusicKeyScale.MusicScale music_scale = 2;
}