using System; namespace DelftTools.Tests.Controls.Swf.Table { public class Person { public string Name { get; set; } public int Age { get; set; } public DateTime DateOfBirth { get; set; } public DateTime DateOfDeath { get; set; } } }