1
Surpriseplus
2022-10-14 6d536dea3cec157947947aa075bebde4305f29b9
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
 
namespace CalcVolServe.Models
{
    public class Triangle
    {
        public Triangle()
        {
            Points = new List<Point>();
        }
 
        public List<Point> Points { set; get; }
    }
}