Search Results for

    Show / Hide Table of Contents

    Class CreateEventParticipantDto

    Data transfer object for creating a new event participant.

    Inheritance
    object
    CreateEventParticipantDto
    Inherited Members
    object.Equals(object)
    object.Equals(object, object)
    object.GetHashCode()
    object.GetType()
    object.MemberwiseClone()
    object.ReferenceEquals(object, object)
    object.ToString()
    Namespace: OEMS.Core.Application.DTOs.Event
    Assembly: OEMS.Core.dll
    Syntax
    public class CreateEventParticipantDto

    Properties

    Email

    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.

    In this article
    Back to top Generated by DocFX