mirror of
https://github.com/open-metadata/OpenMetadata.git
synced 2025-07-09 18:21:23 +00:00
10 lines
140 B
Protocol Buffer
10 lines
140 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
message Address {
|
|
string street = 1;
|
|
string city = 2;
|
|
string state = 3;
|
|
string zip = 4;
|
|
string country = 5;
|
|
}
|