Rock.Client.WorkflowLogEntity.CopyPropertiesFrom C# (CSharp) Method

CopyPropertiesFrom() public method

Copies the base properties from a source WorkflowLog object
public CopyPropertiesFrom ( WorkflowLog source ) : void
source WorkflowLog The source.
return void
        public void CopyPropertiesFrom( WorkflowLog source )
        {
            this.Id = source.Id;
            this.ForeignGuid = source.ForeignGuid;
            this.ForeignKey = source.ForeignKey;
            this.LogDateTime = source.LogDateTime;
            this.LogText = source.LogText;
            this.ModifiedAuditValuesAlreadyUpdated = source.ModifiedAuditValuesAlreadyUpdated;
            this.WorkflowId = source.WorkflowId;
            this.CreatedDateTime = source.CreatedDateTime;
            this.ModifiedDateTime = source.ModifiedDateTime;
            this.CreatedByPersonAliasId = source.CreatedByPersonAliasId;
            this.ModifiedByPersonAliasId = source.ModifiedByPersonAliasId;
            this.Guid = source.Guid;
            this.ForeignId = source.ForeignId;
        }
WorkflowLogEntity