RooProject.vala
[gitlive] / RooProject.vala
1
2
3 static RooProject  _RooProject;
4 public class RooProject  : Object 
5 {
6         public static RooProject singleton()
7     {
8        
9             _RooProject = new RooProject();
10             RooTicket.projects = new Gee.ArrayList<RooProject>();
11
12         }
13         return _RooTicket;
14     }
15         
16         public string  id; // not really important that they are numbers..
17         public string code;
18         public string name;
19         public string type;
20
21         static Gee.ArrayList<RooProject> projects;
22         
23         
24         
25 }
26