2020-11-04 15:51:38 +08:00
|
|
|
syntax = "proto3";
|
|
|
|
|
option go_package = "./pb";
|
|
|
|
|
|
|
|
|
|
package pb;
|
|
|
|
|
|
2021-01-25 16:41:30 +08:00
|
|
|
import "models/model_file.proto";
|
2020-11-04 15:51:38 +08:00
|
|
|
|
|
|
|
|
message IPLibrary {
|
|
|
|
|
int64 id = 1;
|
|
|
|
|
string type = 2;
|
|
|
|
|
int64 createdAt = 3;
|
|
|
|
|
|
|
|
|
|
File file = 30;
|
|
|
|
|
}
|