1// compile this file with `valac --pkg posix repo.vala -C -H repo.h`
2
3namespace Seafile {
4
5public class Branch : Object {
6
7    public string _name;
8    public string name {
9        get { return _name; }
10        set { _name = value; }
11    }
12
13    public string _commit_id;
14    public string commit_id {
15        get { return _commit_id; }
16        set { _commit_id = value; }
17    }
18
19	public string _repo_id;
20	public string repo_id {
21		get { return _repo_id; }
22		set { _repo_id = value; }
23	}
24}
25
26} // namespace
27