using System;
using System.Collections.Generic;
namespace Znyc.Recruitment.Admin.AspNetCore.ViewModel
{
///
/// Vue Cascader 级联选择模型
///
[Serializable]
public class VueCascaderModel
{
///
/// 值
///
public string value { get; set; }
///
/// 显示名称
///
public string label { get; set; }
///
/// 子集
///
public List children { get; set; }
}
}