Skip to main content

RtEntityTcDto

Namespace: Meshmakers.Octo.Runtime.Contracts.TransportContainer.DTOs

Defines an entity

public class RtEntityTcDto : RtTypeWithAttributesTcDto

Inheritance ObjectRtTypeWithAttributesTcDtoRtEntityTcDto

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 ck type id of the entity

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

Property Value

RtCkId<CkTypeId>

RtWellKnownName

Gets or sets the well known name of the entity

public string RtWellKnownName { get; set; }

Property Value

String

RtState

Gets or sets the state of the entity.

public Nullable<RtState> RtState { get; set; }

Property Value

Nullable<RtState>

Associations

Gets or sets the associations of the entity

public List<RtAssociationTcDto> Associations { get; set; }

Property Value

List<RtAssociationTcDto>

Attributes

Gets or sets the attributes of the type

public List<RtAttributeTcDto> Attributes { get; set; }

Property Value

List<RtAttributeTcDto>

Constructors

RtEntityTcDto()

Creates a new instance of RtEntityTcDto

public RtEntityTcDto()