using System; using System.Collections.Generic; using System.Text; namespace GenericDisplayCommand.Controls.V1 { public class ImageView : 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; } /// /// path to picture file /// public string Src { get; set; } } }