Zxd.Core/code/Zxd.Core.Domain/Dto/Zxd/MeetingParticipantDto.cs

20 lines
266 B
C#

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