Files
cms_thermo_active/ThermoCamUtils/Objects.cs
T
2021-02-13 11:49:04 +01:00

19 lines
394 B
C#

using System;
using System.Collections.Generic;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ThermoCamUtils
{
public class SetPoints
{
#region Public Properties
public List<Point> Coords { get; set; } = new List<Point>();
public int curr { get; set; } = 0;
#endregion Public Properties
}
}