using System; using System.Collections.Generic; using System.Linq; using System.Web; namespace CalcVolServe.Models { public class Triangle { public Triangle() { Points = new List(); } public List Points { set; get; } } }