Taylohtio/IDP/parsers/parser-flats-owners/fivaldi/FlatData.cs

18 lines
315 B
C#

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>();
}
}
}