using System; using System.Collections.Generic; using System.Text; namespace New_College.Model.ViewModels { public class SysRegionResult { public int Id { get; set; } public string Code { get; set; } public string Name { get; set; } } public class SysRegionView { public int KeyId { get; set; } public int ParentCode { get; set; } public int Level { get; set; } public string RegionCode { get; set; } public string RegionName { get; set; } //public bool selected { get; set; } = false; } }