mirror of
https://github.com/haiwen/seafile-server.git
synced 2025-04-28 11:24:48 +00:00
18 lines
438 B
Vala
18 lines
438 B
Vala
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 string failed_reason { set; get; }
|
|
public bool successful { set; get; }
|
|
}
|
|
|
|
public class CopyResult : Object {
|
|
public bool background { set; get; }
|
|
public string task_id { set; get; }
|
|
}
|
|
|
|
}
|