Did a lot of work just unit testing left

This commit is contained in:
2019-10-25 02:30:49 -06:00
parent 8d6ba5df72
commit 6901925c69
15 changed files with 508 additions and 74 deletions

View File

@@ -1,11 +1,16 @@
using System.Drawing;
using System.Runtime.Serialization;
namespace Shapes
{
[DataContract(Name = "Points", Namespace = "Shapes")]
public class Point
{
[DataMember]
public double X { get; internal set; }
[DataMember]
public double Y { get; internal set; }
[DataMember]
public Color Color { get; set; }
public Point(double x, double y)