1 sharedlibrarycoredtos EventInfo
RaidMax edited this page 2023-05-20 22:09:21 -05:00

EventInfo Public class

Description

This class wraps the information related to a generated event for the API

Diagram

  flowchart LR
  classDef interfaceStyle stroke-dasharray: 5 5;
  classDef abstractStyle stroke-width:4px
  subgraph SharedLibraryCore.Dtos
  SharedLibraryCore.Dtos.EventInfo[[EventInfo]]
  end

Members

Properties

Public properties

Type Name Methods
DateTime EventTime get, set
EntityInfo EventType get, set
string ExtraInfo get, set
EntityInfo GameInfo get, set
string Id get
EntityInfo OriginEntity get, set
EntityInfo OwnerEntity get, set
EntityInfo TargetEntity get, set

Details

Summary

This class wraps the information related to a generated event for the API

Constructors

EventInfo

Source code

public EventInfo()

Properties

GameInfo

public EntityInfo GameInfo { get; set; }

OriginEntity

public EntityInfo OriginEntity { get; set; }

TargetEntity

public EntityInfo TargetEntity { get; set; }

EventType

public EntityInfo EventType { get; set; }

OwnerEntity

public EntityInfo OwnerEntity { get; set; }

EventTime

public DateTime EventTime { get; set; }

ExtraInfo

public string ExtraInfo { get; set; }

Id

public string Id { get; }

Generated with ModularDoc