Files
2026-07-24 12:06:56 +08:00

11 lines
206 B
Protocol Buffer
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
syntax = "proto3";
// 尽管 Dart 不强制要求 package但建议填写以防冲突
package my_project;
message UserInfo {
int32 id = 1;
string name = 2;
string email = 3;
bool is_admin = 4;
}