memo.proto 328 B

123456789101112131415161718
  1. syntax = "proto3";
  2. package memos.store;
  3. option go_package = "gen/store";
  4. message MemoPayload {
  5. // property is the memo's property.
  6. Property property = 1;
  7. message Property {
  8. repeated string tags = 1;
  9. bool has_link = 2;
  10. bool has_task_list = 3;
  11. bool has_code = 4;
  12. bool has_incomplete_tasks = 5;
  13. }
  14. }