using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace ListBoxBindingSample.Model { internal class Student { public string Name { get; set; } public int Age { get; set; } public int Point { get; set; } } }