public Tag(string id, string name)
 {
     Properties = new Properties()
     {
         Id = id,
         Name = name
     };
 }
 public Project(string id, string name)
 {
     Properties = new Properties()
     {
         Id = id,
         Name = name,
         Tags = new List<string>()
     };
 }
 public Comment(string id, string content, DateTime creationDate)
 {
     Properties = new Properties()
     {
         Id = id,
         Content = content,
         CreationDate = creationDate
     };
 }
 public Issue(string id, string title, string description, string state="open")
 {
     Properties = new Properties()
     {
         Id = id,
         Title = title,
         State = state,
         Description = description,
         Tags = new List<string>()
     };
 }