app_create.proto 315 B

1234567891011121314151617
  1. syntax = "proto3";
  2. message CreateAppRequest {
  3. string workspace_id = 1;
  4. string name = 2;
  5. string desc = 3;
  6. ColorStyle color_style = 4;
  7. }
  8. message ColorStyle {
  9. string theme_color = 1;
  10. }
  11. message AppDetail {
  12. string id = 1;
  13. string workspace_id = 2;
  14. string name = 3;
  15. string desc = 4;
  16. }