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

27 lines
505 B
Vala
Raw Permalink Normal View History

2016-08-10 06:53:33 +00:00
// compile this file with `valac --pkg posix repo.vala -C -H repo.h`
namespace Seafile {
public class Branch : Object {
public string _name;
public string name {
get { return _name; }
set { _name = value; }
}
public string _commit_id;
public string commit_id {
get { return _commit_id; }
set { _commit_id = value; }
}
public string _repo_id;
public string repo_id {
get { return _repo_id; }
set { _repo_id = value; }
}
}
} // namespace