You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

21 lines
419 B

using System;
namespace Znyc.Cloudcar.Admin.Security.Dtos
{
/// <summary>
/// select2 地区选择
/// </summary>
[Serializable]
public class AreaSelect2OutDto
{
/// <summary>
/// 值
/// </summary>
public long Id { get; set; }
/// <summary>
/// 显示内容
/// </summary>
public string text { get; set; }
}
}