using System; namespace Zxd.Core.Domain.Dto.Zxd { public class MeetingParticipantDto { public MeetingParticipantDto() { } public int Id { get; set; } /// /// 参与者 /// public string Participant { get; set; } } }