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