Created
May 1, 2019 12:15
-
-
Save kskalski/c8daa16133badca144259ebdb36873a6 to your computer and use it in GitHub Desktop.
Proto+EF model
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
syntax = "proto3"; | |
package Models; | |
message Fruit { | |
int64 Id = 1; | |
string Name = 2; | |
double Weight = 3; | |
} | |
message Tree { | |
int64 Id = 1; | |
double Height = 2; | |
repeated Fruit Fruits = 3; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment