aboutsummaryrefslogtreecommitdiff
path: root/examples/addressbook/phonenumber.proto
blob: 2d53cfed0ae57d6a11783dcec7c31ac8fe588306 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
syntax = "proto3";

enum PhoneType {
    MOBILE = 0;
    HOME = 1;
    WORK = 2;
}

message PhoneNumber {
    string number = 1;
    PhoneType type = 2; // [default = HOME]; default values not supported yet
}