using System.Collections.Generic; namespace fivaldi { public class FlatData { public string Title { get; set; } public int Row { get; set; } public List People { get; set; } public FlatData() { People = new List(); } } }