19 lines
394 B
C#
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
|
|
}
|
|
} |