using System; namespace PaintDotNet.Measurement.Enum { [Flags] public enum ShapeDrawType { Interior = 1, Outline = 2, Both = 3 } }