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

CopyPropertiesFrom() public method

Copies the base properties from a source Workflow object
public CopyPropertiesFrom ( Workflow source ) : void
source Workflow The source.
return void
        public void CopyPropertiesFrom( Workflow source )
        {
            this.Id = source.Id;
            this.ActivatedDateTime = source.ActivatedDateTime;
            this.CompletedDateTime = source.CompletedDateTime;
            this.Description = source.Description;
            this.ForeignGuid = source.ForeignGuid;
            this.ForeignKey = source.ForeignKey;
            this.InitiatorPersonAliasId = source.InitiatorPersonAliasId;
            this.IsProcessing = source.IsProcessing;
            this.LastProcessedDateTime = source.LastProcessedDateTime;
            this.ModifiedAuditValuesAlreadyUpdated = source.ModifiedAuditValuesAlreadyUpdated;
            this.Name = source.Name;
            this.Status = source.Status;
            this.WorkflowIdNumber = source.WorkflowIdNumber;
            this.WorkflowTypeId = source.WorkflowTypeId;
            this.CreatedDateTime = source.CreatedDateTime;
            this.ModifiedDateTime = source.ModifiedDateTime;
            this.CreatedByPersonAliasId = source.CreatedByPersonAliasId;
            this.ModifiedByPersonAliasId = source.ModifiedByPersonAliasId;
            this.Guid = source.Guid;
            this.ForeignId = source.ForeignId;
        }
WorkflowEntity