34 lines
739 B
C#
34 lines
739 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 TestingProjectDto
|
|
{
|
|
/// <summary>
|
|
/// ProjectId
|
|
/// </summary>
|
|
public int ProjectId { get; set; }
|
|
|
|
/// <summary>
|
|
///名称
|
|
/// </summary>
|
|
public string ProjectName { get; set; }
|
|
|
|
/// <summary>
|
|
///IsOpen
|
|
/// </summary>
|
|
public bool IsOpen { get; set; }
|
|
|
|
/// <summary>
|
|
///IsShow
|
|
/// </summary>
|
|
public bool IsShow { get; set; }
|
|
}
|
|
}
|