using System.Collections.Generic;
using System.Xml.Serialization;
public static void Main()
List<Tweet> tweets = new List<Tweet>();
XmlSerializer serializer = new XmlSerializer(typeof(List<Tweet>));
var stringwriter = new System.IO.StringWriter();
serializer.Serialize(stringwriter, tweets);
Console.WriteLine(stringwriter.ToString());
Photos = new List<Photo>();
PhotoUri = "a/random/ur/path",
SourcePhotoUri = "a/random/path",
ProfileImage = "a/random/path";
public List<Photo> Photos { get; set; }
public string ProfileImage { get; set; }
public string ScreenName { get; set; }
public string Text { get; set; }
public string TweetId { get; set; }
public string UserId { get; set; }
public string Username { get; set; }
public string PhotoHeight { get; set; }
public string PhotoUri { get; set; }
public string PhotoWidth { get; set; }
public string SourcePhotoUri { get; set; }