RooRepo.vala
[gitlive] / RooRepo.vala
1 public class RooRepo : Object 
2 {
3  
4  
5
6         public string  id; // not really important that they are numbers..
7         public string project_id;
8         public string description;
9         public string shortname;
10         
11         static Gee.ArrayList<RooRepo> _repos; // only available for singletonn.         
12         static public  Gee.ArrayList<RooRepo>() {
13                 RooRepo.init();
14                 return RooRepo._repos;
15         }
16         
17
18 }