using System; namespace tabletStrator { /// /// Summary description for MyInkTag. /// public class MyInkTag { public MyInkTag() { this.Redraw = false; this.RedrawType = RedrawEnum.Paint; this.RedrawCount = 0; } private int redrawCount; public int RedrawCount { get { return redrawCount; } set { redrawCount = value; } } private bool redraw; public bool Redraw { get { return redraw; } set { redraw = value; } } private RedrawEnum redrawType; public RedrawEnum RedrawType { get { return redrawType; } set { redrawType = value; } } } public enum RedrawEnum { Paint, Resize, Move, Pause, Play, Color, Erase } }