blob: 5634bde1fe6f8a5fe7927454375154445c0b3a56 [file] [log] [blame]
syntax = "proto2";
option java_package = "com.android.tools.idea.serverflags.protos";
option java_multiple_files = true;
// represents a date with day, month, and year values
message Date {
optional int32 year = 1; // year of the date
optional int32 month = 2; // month of the date
optional int32 day = 3; // day of the date
}