Files
EdgeCommon/pkg/rpc/protos/models/model_ip_library_artifact.proto
2023-03-29 20:07:15 +08:00

18 lines
308 B
Protocol Buffer

syntax = "proto3";
option go_package = "./pb";
package pb;
import "models/model_file.proto";
message IPLibraryArtifact {
int64 id = 1;
int64 fileId = 2;
int64 createdAt = 3;
bytes metaJSON = 4;
bool isPublic = 5; // 是否公开
string name = 6;
string code = 7;
File file = 30; // 文件信息
}