EdgeGraphics.cs

19 lines | 420 B Blame History Raw Download
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

using System.Drawing;

using yEd.XGML.Enums;

namespace yEd.XGML.DocumentEntities.EdgeEntitie
{
    public class EdgeGraphics
    {
        public Color fill { set; get; } = ColorTranslator.FromHtml("#000000");
        public EnumArrowType targetArrow { set; get; } = EnumArrowType.standard;
    }
}