Skip to content

Instantly share code, notes, and snippets.

@Redth
Created October 12, 2010 23:22
Show Gist options
  • Save Redth/623112 to your computer and use it in GitHub Desktop.
Save Redth/623112 to your computer and use it in GitHub Desktop.
namespace MonoDroid.CustomList
{
public class Animal
{
public string Name
{
get;
set;
}
public string Description
{
get;
set;
}
public int Image
{
get;
set;
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment