edition = "2023";

package library.v1;

message Author {
  int32 id = 1;
  string name = 2;
}

message Book {
  int32 id = 1;
  int32 author_id = 2;
  string title = 3;
  string summary = 4;
}

message BookTag {
  int32 id = 1;
  int32 book_id = 2;
  int32 tag_id = 3;
}

message Tag {
  int32 id = 1;
  string name = 2;
}

// Code generated by ptah schema export --to protobuf; DO NOT EDIT.
// ptah:protobuf-export-version=2
// ptah:content-sha256=278537f353cb076aa0ab7e09d41b6cc97e05f75ef49e2b08424f72e405dc9867
