RtEntityDto
Namespace: Meshmakers.Octo.Communication.Contracts.DataTransferObjects
Base class for all runtime entity DTOs
public class RtEntityDto : GraphQlDto
Inheritance Object → GraphQlDto → RtEntityDto
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 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
RtVersion
Gets or sets the version of the entity
public ulong RtVersion { get; set; }
Property Value
Attributes
Gets or sets the attributes of the entity
public IList<RtEntityAttributeDto> Attributes { get; set; }
Property Value
UserContext
A user context object that can be used to transport user specific data
public object UserContext { get; set; }
Property Value
Constructors
RtEntityDto()
public RtEntityDto()