Загрузка данных


using System.Collections.Generic;

namespace ConsoleApp122222
{
    public class Zoo
    {
        public string Title { get; set; }
        public List<Animal> Animals { get; set; }

        public Zoo(string title, List<Animal> animals)
        {
            Title = title;
            Animals = animals;
        }
    }
}