using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using yEd.XGML.Enums;
namespace yEd.XGML.DocumentEntities.NodeEntitie
{
public class NodeLabelGraphics
{
//public string text { set; get; }
/// <summary>
/// Размер шрифты
/// </summary>
public int fontSize { set; get; } = 12;
/// <summary>
/// тип шрифта
/// </summary>
public EnumFont fontName { set; get; } = EnumFont.Dialog;
public string anchor => "c";
}
}