Good morning, I would like to know how you can combine an object that contains a list inside it and be able to pass it to a list in the document. This is my class to combine:
public class Customer
{
public string Name{ get; set; }
public int Age{ get; set; }
public string PaymentDate{ get; set; }
public ObservableCollection<string> ChildrenName{ get; set; }
}