| 1234567891011121314151617 |
- namespace Breda_Tour.Data
- {
- public class HelpItemStep
- {
- public string Title { get; private set; }
- public string Description { get; private set; }
- public string ImageSource { get; private set; }
- public HelpItemStep(string Title, string Description, string ImageSource)
- {
- this.Title = Title;
- this.Description = Description;
- this.ImageSource = "ms-appx:///Storage/helpimages/"+ImageSource;
- }
- }
- }
|