2025-01-14 16:04:33 +08:00

29 lines
620 B
C#

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
{
/// <summary>
/// Id
/// </summary>
public int Id { get; set; }
/// <summary>
/// ProjectKind
/// </summary>
public int ProjectKind { get; set; }
/// <summary>
///名称
/// </summary>
public string Name { get; set; }
}
}