1
0
mirror of https://github.com/haiwen/seafile-server.git synced 2025-04-28 19:35:10 +00:00
seafile-server/lib/search-result.vala

19 lines
376 B
Vala
Raw Permalink Normal View History

// compile this file with `valac --pkg posix repo.vala -C -H repo.h`
namespace Seafile {
public class SearchResult: Object {
public string _path;
public string path {
get { return _path; }
set { _path = value; }
}
public int64 size { get; set; }
public int64 mtime { get; set; }
public bool is_dir { set; get; }
}
} // namespace