1
0
mirror of https://github.com/haiwen/seafile-server.git synced 2025-07-04 18:56:18 +00:00
seafile-server/lib/copy-task.vala

17 lines
389 B
Vala
Raw Normal View History

2016-08-10 06:53:33 +00:00
namespace Seafile {
public class CopyTask : Object {
public int64 done { set; get; }
public int64 total { set; get; }
public bool canceled { set; get; }
public bool failed { set; get; }
public bool successful { set; get; }
}
public class CopyResult : Object {
public bool background { set; get; }
public string task_id { set; get; }
}
}