1using System.Drawing; 2 3namespace WindowCapture.Models 4{ 5 public class NumberMarker 6 { 7 public Point Location; 8 public int Number; 9 public float FontSize; // Individual font size for this marker 10 11 public NumberMarker(Point location, int number) 12 { 13 Location = location; 14 Number = number; 15 FontSize = Settings.MarkerFontSize; 16 } 17 } 18}