YD_Event.Admin/YD_Event.Commons/Dto/Common/TestingProjectDto.cs
2025-12-15 10:52:47 +08:00

34 lines
738 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_Event.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; }
}
}