Actor.proto 284 Bytes
Newer Older
Luca Arrotta's avatar
Luca Arrotta committed
1 2 3 4 5 6 7 8 9 10 11 12
package it.ewlab.actor;

message Actor {
	required string name = 1;
	required string surname = 2;

	enum Sex {
		MALE = 0;
		FEMALE = 1;
	}

	message Movie {
Luca Arrotta's avatar
Luca Arrotta committed
13 14 15
        required string title = 1;
        required int32 year = 2;
    }
Luca Arrotta's avatar
Luca Arrotta committed
16 17 18 19

	repeated Movie movie = 3;
	optional Sex sex = 4;
}