mtime/ctime/atime should be Timestamp

This commit is contained in:
Jeffrey Paul 2021-11-03 04:23:09 -07:00
parent 4fd76850da
commit 9dd2682b49
1 changed files with 3 additions and 4 deletions

View File

@ -31,7 +31,6 @@ message MFFile {
} }
message MFFilePath { message MFFilePath {
// required attributes: // required attributes:
string path = 101; string path = 101;
uint64 size = 102; uint64 size = 102;
@ -41,9 +40,9 @@ message MFFilePath {
// optional per-file metadata // optional per-file metadata
optional string mimeType = 301; optional string mimeType = 301;
optional string mtime = 302; optional google.protobuf.Timestamp mtime = 302;
optional string ctime = 303; optional google.protobuf.Timestamp ctime = 303;
optional string atime = 304; optional google.protobuf.Timestamp atime = 304;
} }