RtEntityTcDto
Namespace: Meshmakers.Octo.Runtime.Contracts.TransportContainer.DTOs
Defines an entity
public class RtEntityTcDto : RtTypeWithAttributesTcDto
Inheritance Object → RtTypeWithAttributesTcDto → RtEntityTcDto
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
RtChangedDateTime
Returns the last change date time
public Nullable<DateTime> RtChangedDateTime { get; set; }
Property Value
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
RtState
Gets or sets the state of the entity.
public Nullable<RtState> RtState { get; set; }
Property Value
Associations
Gets or sets the associations of the entity
public List<RtAssociationTcDto> Associations { get; set; }
Property Value
Attributes
Gets or sets the attributes of the type
public List<RtAttributeTcDto> Attributes { get; set; }
Property Value
Constructors
RtEntityTcDto()
Creates a new instance of RtEntityTcDto
public RtEntityTcDto()