using System;
using System.Collections.Generic;
using System.Text;
namespace Shentun.WebPeis.QuestionRegisters
{
public class QuestionRegisterDto
{
///
/// 主键
///
public Guid QuestionRegisterId { get; set; }
///
/// 人员ID
///
public Guid PersonId { get; set; }
///
/// 登记的问卷项目
///
public virtual ICollection QuestionRegisterItems { get; set; } = new List();
}
}