mirror of
https://github.com/haiwen/seafile-server.git
synced 2025-04-28 11:24:48 +00:00
19 lines
376 B
Vala
19 lines
376 B
Vala
// 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
|