Class CreateEventParticipantDto
Data transfer object for creating a new event participant.
Inherited Members
Namespace: OEMS.Core.Application.DTOs.Event
Assembly: OEMS.Core.dll
Syntax
public class CreateEventParticipantDto
Properties
Gets or sets the email address for the participant.
Declaration
public string Email { get; set; }
Property Value
Type | Description |
---|---|
string | The email address for invitation delivery or participant identification. |
EventId
Gets or sets the identifier of the event for the participant.
Declaration
public Guid EventId { get; set; }
Property Value
Type | Description |
---|---|
Guid | The GUID of the event that the participant will be added to. |
Name
Gets or sets the optional name for external participants.
Declaration
public string Name { get; set; }
Property Value
Type | Description |
---|---|
string | The participant's name when not associated with an existing user account. |
UserId
Gets or sets the optional identifier of an existing user to add as a participant.
Declaration
public Guid? UserId { get; set; }
Property Value
Type | Description |
---|---|
Guid? | The GUID of the user, or null for external participants invited by email. |