Class EventParticipation
Inheritance
EventParticipation
Assembly: OEMS.Core.dll
Syntax
public class EventParticipation
Properties
AttendanceConfirmed
Declaration
public bool? AttendanceConfirmed { get; set; }
Property Value
CancellationTime
Declaration
public DateTime? CancellationTime { get; set; }
Property Value
Event
Declaration
[ForeignKey("EventId")]
public virtual Event Event { get; set; }
Property Value
EventId
Declaration
[Required]
public Guid EventId { get; set; }
Property Value
Id
Declaration
[Key]
public Guid Id { get; set; }
Property Value
RegistrationTime
Declaration
[Required]
public DateTime RegistrationTime { get; set; }
Property Value
Status
Declaration
[Required]
public ParticipationStatus Status { get; set; }
Property Value
User
Declaration
[ForeignKey("UserId")]
public virtual User User { get; set; }
Property Value
UserId
Declaration
[Required]
public Guid UserId { get; set; }
Property Value