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