I have something like this
public class Item
{
public string FirstName { get; set; }
public string LastName { get; set; }
public int ID { get; set; }
}
public class Data
{
public List<Item> Items { get; set; }
}
what is right type of relationsheeps between them? Dependency?