What i'm trying to do is create a new model that will have certain features:
public class GenericGoal
{
    public int _id { get; set; }
    public List<String> Type_of_Goal { get; set; }
    public DateTime Date { get; set; }
}
my quick and small question would be, how would I prepopulate the Type_of_goal field? 
 
     
    