using Ewide.Core.Util;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Vote.Services.Entities;
namespace Vote.Services.Dto
{
public class ProjectsInput
{
}
public class ProjectsOutput
{
///
/// 项目序号
///
public int serial_number { get; set; }
///
/// 工程名称
///
public string name { get; set; }
///
/// 项目类型
///
public EnumProjectType type { get; set; }
///
/// 项目类型
///
public string type_title
{
get
{
return type.GetEnumDescription();
}
}
}
}