mirror of
https://github.com/samuelncui/yatm.git
synced 2025-12-23 06:15:22 +00:00
17 lines
317 B
Protocol Buffer
17 lines
317 B
Protocol Buffer
syntax = "proto3";
|
|
package position;
|
|
option go_package = "github.com/samuelncui/yatm/entity";
|
|
|
|
message Position {
|
|
int64 id = 1;
|
|
int64 file_id = 2;
|
|
int64 tape_id = 3;
|
|
string path = 4;
|
|
|
|
int64 mode = 17;
|
|
int64 mod_time = 18;
|
|
int64 write_time = 19;
|
|
int64 size = 20;
|
|
bytes hash = 21;
|
|
}
|