Advertisement
Guest User

Untitled

a guest
Dec 21st, 2014
150
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.40 KB | None | 0 0
  1. public class Album
  2. {
  3. public string Text { get; set; }
  4. public string Link { get; set; }
  5. }
  6. public static List<Album> Albums { get; set; }
  7. public MainWindow()
  8. {
  9. InitializeComponent();
  10. Albums = new List<Album>
  11. {
  12. new Album {Text = "Google", Link = "www.google.de"}
  13. };
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement