mirror of
https://github.com/nexus-stc/hyperboria
synced 2025-01-26 18:37:32 +01:00
dd23846059
- [nexus] Switch bot - [bot] Added extra receivers functionality GitOrigin-RevId: 68fc32d3e79ff411758f54f435fe8680fc42dead
13 lines
240 B
Protocol Buffer
13 lines
240 B
Protocol Buffer
syntax = "proto3";
|
|
package nexus.models.proto;
|
|
|
|
message Sharience {
|
|
int64 id = 1;
|
|
int64 parent_id = 2;
|
|
int64 uploader_id = 3;
|
|
uint32 updated_at = 4;
|
|
string md5 = 5;
|
|
uint32 filesize = 6;
|
|
repeated string ipfs_multihashes = 7;
|
|
}
|