RooTicket.vala
authorAlan Knowles <alan@roojs.com>
Mon, 17 Dec 2018 05:55:38 +0000 (13:55 +0800)
committerAlan Knowles <alan@roojs.com>
Mon, 17 Dec 2018 05:55:38 +0000 (13:55 +0800)
RooTicket.vala

index 4764c8e..38a7c80 100644 (file)
@@ -13,7 +13,7 @@ public class RooRepo : Object
        public string project_id;
        public string description;
        public string shortname;
-
+       
 
 }
 
@@ -23,6 +23,11 @@ public class RooOption : Object
        public string id; // not really important that they are numbers..
        public string display_name;
  
+       public RooOption (string id, string name)
+       {
+               this.id = id;
+               this.display_name = name;
+       }
 
 }