Skip to main content

RtEntityDto

Namespace: Meshmakers.Octo.Communication.Contracts.DataTransferObjects

Base class for all runtime entity DTOs

public class RtEntityDto : GraphQlDto

Inheritance ObjectGraphQlDtoRtEntityDto

Properties

RtId

Gets or sets the id of the entity

public OctoObjectId RtId { get; set; }

Property Value

OctoObjectId

RtCreationDateTime

Returns the creation date time

public Nullable<DateTime> RtCreationDateTime { get; set; }

Property Value

Nullable<DateTime>

RtChangedDateTime

Returns the last change date time

public Nullable<DateTime> RtChangedDateTime { get; set; }

Property Value

Nullable<DateTime>

CkTypeId

Gets or sets the type id of the entity

public CkId<CkTypeId> CkTypeId { get; set; }

Property Value

CkId<CkTypeId>

RtWellKnownName

Gets or sets the well known name of the entity

public string RtWellKnownName { get; set; }

Property Value

String

RtVersion

Gets or sets the version of the entity

public ulong RtVersion { get; set; }

Property Value

UInt64

Attributes

Gets or sets the attributes of the entity

public IList<RtEntityAttributeDto> Attributes { get; set; }

Property Value

IList<RtEntityAttributeDto>

UserContext

A user context object that can be used to transport user specific data

public object UserContext { get; set; }

Property Value

Object

Constructors

RtEntityDto()

public RtEntityDto()