ComplianceServer/code/Hg.Core.Domain/Dto/Meeting/MeetingParticipantDto.cs

21 lines
324 B
C#

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