Created
August 24, 2013 07:47
-
-
Save christiannagel/6326717 to your computer and use it in GitHub Desktop.
Windows Store App - SampleDataGroup
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class SampleDataGroup | |
{ | |
public SampleDataGroup(String uniqueId, String title, String subtitle, String imagePath, String description) | |
{ | |
this.UniqueId = uniqueId; | |
this.Title = title; | |
this.Subtitle = subtitle; | |
this.Description = description; | |
this.ImagePath = imagePath; | |
this.Items = new ObservableCollection<SampleDataItem>(); | |
} | |
public string UniqueId { get; private set; } | |
public string Title { get; private set; } | |
public string Subtitle { get; private set; } | |
public string Description { get; private set; } | |
public string ImagePath { get; private set; } | |
public ObservableCollection<SampleDataItem> Items { get; private set; } | |
public override string ToString() | |
{ | |
return this.Title; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment