using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations.Schema;
using System.ComponentModel.DataAnnotations;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace YD_WeChatApplet.Commons.Dto.HomeWork
{
///
/// 下拉框通用
///
public class ComboBoxDto
{
///
/// Id
///
public int Id { get; set; }
///
///名称
///
public string Name { get; set; }
}
}