syntax = "proto3";

import "google/protobuf/any.proto";
import "google/protobuf/duration.proto";

package a.b.c;

message C {
    string name = 1;

    google.protobuf.Any any = 3;

    google.protobuf.Duration duration = 4;
}
