mirror of
https://github.com/TeamVanced/VancedMicroG
synced 2024-11-19 10:39:24 +01:00
17 lines
426 B
Protocol Buffer
17 lines
426 B
Protocol Buffer
option java_package = "org.microg.gms.auth";
|
|
|
|
option java_outer_classname = "AuthProto";
|
|
|
|
message ConsentData {
|
|
message AppDetails {
|
|
optional string title = 1;
|
|
optional string email = 3;
|
|
}
|
|
optional AppDetails app = 1;
|
|
message ScopeDetails {
|
|
optional string title = 1;
|
|
optional string description = 2;
|
|
optional string id = 6;
|
|
}
|
|
repeated ScopeDetails scopes = 2;
|
|
} |