Below is my class. I need to make it Enumerable. I have looked online and although I have found alot of documentation I am still lost. This I think is absolutely the first time I am going to ask this but could someone please just make this darn thing Enumerable for me and I will figure it out from there. I am using C# ASP.Net 4.0
    public class ProfilePics
{
    public string status { get; set; }
    public string filename { get; set; }
    public bool mainpic { get; set; }
    public string fullurl { get; set; }
}
