HelpItemStep.cs 578 B

1234567891011121314151617181920212223
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace Breda_Tour.Data
  7. {
  8. public class HelpItemStep
  9. {
  10. public string Title { get; private set; }
  11. public string Description { get; private set; }
  12. public string ImageSource { get; private set; }
  13. public HelpItemStep(string Title, string Description, string Imagesource)
  14. {
  15. this.Title = Title;
  16. this.Description = Description;
  17. this.ImageSource = ImageSource;
  18. }
  19. }
  20. }