Search Results for

    Show / Hide Table of Contents

    Class EventDto

    Data transfer object for event information with full details.

    Inheritance
    object
    EventDto
    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 EventDto

    Properties

    Category

    Declaration
    public EventCategory Category { get; set; }
    Property Value
    Type Description
    EventCategory

    CreationDate

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

    CreatorFullName

    Declaration
    public string CreatorFullName { get; set; }
    Property Value
    Type Description
    string

    CreatorId

    Declaration
    public Guid CreatorId { get; set; }
    Property Value
    Type Description
    Guid

    CurrentParticipants

    Declaration
    public int CurrentParticipants { get; set; }
    Property Value
    Type Description
    int

    Date

    Gets the formatted date of the event.

    Declaration
    public string Date { get; }
    Property Value
    Type Description
    string

    A formatted string showing the event date (e.g., "25.12.2023").

    Description

    Gets or sets the description of the event.

    Declaration
    public string Description { get; set; }
    Property Value
    Type Description
    string

    A detailed description providing information about the event.

    Duration

    Gets the formatted duration of the event.

    Declaration
    public string Duration { get; }
    Property Value
    Type Description
    string

    A formatted string showing the event time range (e.g., "09:00 - 17:00").

    EndDateTime

    Gets or sets the end date and time of the event.

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

    The timestamp when the event concludes.

    Id

    Gets or sets the unique identifier of the event.

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

    A GUID that uniquely identifies the event.

    IsGroupEvent

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

    IsHidden

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

    IsPublic

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

    Location

    Declaration
    public Location Location { get; set; }
    Property Value
    Type Description
    Location

    MaxParticipants

    Declaration
    public int MaxParticipants { get; set; }
    Property Value
    Type Description
    int

    Processes

    Declaration
    public List<ProcessDto> Processes { get; set; }
    Property Value
    Type Description
    List<ProcessDto>

    StartDateTime

    Gets or sets the start date and time of the event.

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

    The timestamp when the event begins.

    Status

    Declaration
    public string Status { get; set; }
    Property Value
    Type Description
    string

    Title

    Gets or sets the title of the event.

    Declaration
    public string Title { get; set; }
    Property Value
    Type Description
    string

    A descriptive title for the event.

    files

    Declaration
    public List<EventFileDto> files { get; set; }
    Property Value
    Type Description
    List<EventFileDto>
    In this article
    Back to top Generated by DocFX