1234567891011121314151617181920212223242526272829 |
- using System;
- using System.Collections.Generic;
- using System.Text;
- namespace GenericDisplayCommand.Controls.V1
- {
- public class ImageView : View
- {
-
-
-
-
- public string Gravity
- {
- get; set;
- }
- public string Text
- {
- get; set;
- }
-
-
-
- public string Src
- { get; set; }
- }
- }
|