That is really hard; if you absolutely wanted to do that as runtime classes, you'd have to look at TypeBuilder etc. Frankly, unless you are already familiar with that, or this is really important, it probably isn't worth it. Not least: you can't really code against such objects, except as object.
Your best bet might be to use some kind of DOM (XmlDocument, XElement etc) to read the data, but populate perhaps into a DataTable. I'm not really a big fan of DataTable in regular code, but it exists, and would fit this scenario nicely.
XmlDocument doc = new XmlDocument();
doc.LoadXml(xml);
DataTable table = new DataTable();
foreach(XmlElement child in doc.DocumentElement.SelectNodes("column"))
{
table.Columns.Add(child.InnerText, ParseType(child.GetAttribute("Type")));
}
....
static Type ParseType(string type)
{
switch(type)
{
case "String": return typeof(string);
case "Int32": return typeof(int);
default: throw new NotSupportedException(type ?? "(null)");
}
}