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 { /// /// ProjectId /// public int ProjectId { get; set; } /// ///名称 /// public string ProjectName { get; set; } /// ///IsOpen /// public bool IsOpen { get; set; } /// ///IsShow /// public bool IsShow { get; set; } } }