mirror of
https://github.com/nexus-stc/hyperboria
synced 2024-12-04 17:02:53 +01:00
681817ceae
GitOrigin-RevId: 83514338be1d662518bab9fe5ab6eefef98f229f
14 lines
271 B
Protocol Buffer
14 lines
271 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;
|
|
string telegram_file_id = 8;
|
|
}
|