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_XinWei.Commons.Dto.Common
{
public class ProjectModeDto
{
///
/// Id
///
public int Id { get; set; }
///
/// ProjectKind
///
public int ProjectKind { get; set; }
///
///名称
///
public string Name { get; set; }
}
}