HelpItemStep.cs 494 B

1234567891011121314151617
  1. namespace Breda_Tour.Data
  2. {
  3. public class HelpItemStep
  4. {
  5. public string Title { get; private set; }
  6. public string Description { get; private set; }
  7. public string ImageSource { get; private set; }
  8. public HelpItemStep(string Title, string Description, string ImageSource)
  9. {
  10. this.Title = Title;
  11. this.Description = Description;
  12. this.ImageSource = "ms-appx:///Storage/helpimages/"+ImageSource;
  13. }
  14. }
  15. }