From: Alan Knowles Date: Mon, 24 Dec 2018 06:53:57 +0000 (+0800) Subject: RooProject.vala X-Git-Url: http://git.roojs.org/?p=gitlive;a=commitdiff_plain;h=791a271431966908302537c2c5476059785d88a3 RooProject.vala --- diff --git a/RooProject.vala b/RooProject.vala index e69de29b..ca3d710c 100644 --- a/RooProject.vala +++ b/RooProject.vala @@ -0,0 +1,26 @@ + + +static RooProject _RooProject; +public class RooProject : Object +{ + public static RooProject singleton() + { + + _RooProject = new RooProject(); + RooTicket.projects = new Gee.ArrayList(); + + } + return _RooTicket; + } + + public string id; // not really important that they are numbers.. + public string code; + public string name; + public string type; + + static Gee.ArrayList projects; + + + +} +