HomeScreen: list of recent documents
This commit is contained in:
committed by
pynicolas
parent
eb1f3b64ed
commit
f3e814b93a
14
app/src/main/proto/recent_documents.proto
Normal file
14
app/src/main/proto/recent_documents.proto
Normal file
@@ -0,0 +1,14 @@
|
||||
syntax = "proto3";
|
||||
|
||||
option java_package = "org.mydomain.myscan";
|
||||
option java_multiple_files = true;
|
||||
|
||||
message RecentDocument {
|
||||
string file_path = 1;
|
||||
int64 created_at = 2; // timestamp in ms
|
||||
int32 page_count = 3;
|
||||
}
|
||||
|
||||
message RecentDocuments {
|
||||
repeated RecentDocument documents = 1;
|
||||
}
|
||||
Reference in New Issue
Block a user