Class Event
Assembly: OEMS.Core.dll
Syntax
Properties
ArchiveDate
Declaration
public DateTime? ArchiveDate { get; set; }
Property Value
CategoryId
Declaration
[Required]
public Guid CategoryId { get; set; }
Property Value
CreationDate
Declaration
[Required]
public DateTime CreationDate { get; set; }
Property Value
Creator
Declaration
[ForeignKey("CreatorId")]
public virtual User Creator { get; set; }
Property Value
CreatorId
Declaration
[Required]
public Guid CreatorId { get; set; }
Property Value
CurrentParticipants
Declaration
[Required]
public int CurrentParticipants { get; set; }
Property Value
Description
Declaration
public string Description { get; set; }
Property Value
EndDateTime
Declaration
[Required]
public DateTime EndDateTime { get; set; }
Property Value
EventCategory
Declaration
[ForeignKey("CategoryId")]
public virtual EventCategory EventCategory { get; set; }
Property Value
EventFiles
Declaration
public virtual ICollection<EventFile> EventFiles { get; set; }
Property Value
EventParticipations
Declaration
public virtual ICollection<EventParticipation> EventParticipations { get; set; }
Property Value
EventProcesses
Declaration
public virtual ICollection<EventProcess> EventProcesses { get; set; }
Property Value
Feedbacks
Declaration
public virtual ICollection<Feedback> Feedbacks { get; set; }
Property Value
Group
Declaration
[ForeignKey("GroupId")]
public virtual Group Group { get; set; }
Property Value
GroupId
Declaration
public Guid? GroupId { get; set; }
Property Value
Id
Declaration
[Key]
public Guid Id { get; set; }
Property Value
IsGroupEvent
Declaration
[Required]
public bool IsGroupEvent { get; set; }
Property Value
Location
Declaration
[ForeignKey("LocationId")]
public virtual Location Location { get; set; }
Property Value
LocationId
Declaration
[Required]
public Guid LocationId { get; set; }
Property Value
MaxParticipants
Declaration
[Required]
public int MaxParticipants { get; set; }
Property Value
Organization
Declaration
[ForeignKey("OrganizationId")]
public virtual Organization Organization { get; set; }
Property Value
OrganizationId
Declaration
[Required]
public Guid OrganizationId { get; set; }
Property Value
StartDateTime
Declaration
[Required]
public DateTime StartDateTime { get; set; }
Property Value
Status
Declaration
[Required]
public EventStatus Status { get; set; }
Property Value
Title
Declaration
[Required]
[StringLength(200)]
public string Title { get; set; }
Property Value