mtime/ctime/atime should be Timestamp

main
Jeffrey Paul 2 years ago
parent 4fd76850da
commit 9dd2682b49
  1. 7
      proto/mf.proto

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

Loading…
Cancel
Save