using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace SimpleDataBinding { internal class Cities { public bool Seoul { get; set; } public bool Jejoo { get; set; } public bool Incheon { get; set; } } }