using System; using System.Collections.Generic; using System.Text; namespace GenericDisplayCommand.Controls.V1 { public class TextView : View { /// /// center_vertical, center_horizontal, top, bottom, left, right, fill_vertical, fill_horizontal /// center, fill /// public string Gravity { get; set; } public string Text { get; set; } public string TextColor { get; set; } } }