Files
WPF_Practice/PacticeSolution/SimpleDataBinding/Cities.cs
2023-07-07 13:11:07 +09:00

16 lines
312 B
C#

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; }
}
}