Search Results for

    Show / Hide Table of Contents

    Class EventParticipation

    Inheritance
    object
    EventParticipation
    Inherited Members
    object.Equals(object)
    object.Equals(object, object)
    object.GetHashCode()
    object.GetType()
    object.MemberwiseClone()
    object.ReferenceEquals(object, object)
    object.ToString()
    Namespace: OEMS.Core.Domain
    Assembly: OEMS.Core.dll
    Syntax
    public class EventParticipation

    Properties

    AttendanceConfirmed

    Declaration
    public bool? AttendanceConfirmed { get; set; }
    Property Value
    Type Description
    bool?

    CancellationTime

    Declaration
    public DateTime? CancellationTime { get; set; }
    Property Value
    Type Description
    DateTime?

    Event

    Declaration
    [ForeignKey("EventId")]
    public virtual Event Event { get; set; }
    Property Value
    Type Description
    Event

    EventId

    Declaration
    [Required]
    public Guid EventId { get; set; }
    Property Value
    Type Description
    Guid

    Id

    Declaration
    [Key]
    public Guid Id { get; set; }
    Property Value
    Type Description
    Guid

    RegistrationTime

    Declaration
    [Required]
    public DateTime RegistrationTime { get; set; }
    Property Value
    Type Description
    DateTime

    Status

    Declaration
    [Required]
    public ParticipationStatus Status { get; set; }
    Property Value
    Type Description
    ParticipationStatus

    User

    Declaration
    [ForeignKey("UserId")]
    public virtual User User { get; set; }
    Property Value
    Type Description
    User

    UserId

    Declaration
    [Required]
    public Guid UserId { get; set; }
    Property Value
    Type Description
    Guid
    In this article
    Back to top Generated by DocFX