// ----------------------------------------------------------------------- // // Copyright 2013 MIT Licence. See licence.md for more information. // // ----------------------------------------------------------------------- namespace Perspex.Media { public class FormattedText { public string FontFamilyName { get; set; } public double FontSize { get; set; } public string Text { get; set; } } }