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

CopyPropertiesFrom() public method

Copies the base properties from a source WorkflowTrigger object
public CopyPropertiesFrom ( WorkflowTrigger source ) : void
source WorkflowTrigger The source.
return void
        public void CopyPropertiesFrom( WorkflowTrigger source )
        {
            this.Id = source.Id;
            this.EntityTypeId = source.EntityTypeId;
            this.EntityTypeQualifierColumn = source.EntityTypeQualifierColumn;
            this.EntityTypeQualifierValue = source.EntityTypeQualifierValue;
            this.EntityTypeQualifierValuePrevious = source.EntityTypeQualifierValuePrevious;
            this.ForeignGuid = source.ForeignGuid;
            this.ForeignKey = source.ForeignKey;
            this.IsActive = source.IsActive;
            this.IsSystem = source.IsSystem;
            this.WorkflowName = source.WorkflowName;
            this.WorkflowTriggerType = source.WorkflowTriggerType;
            this.WorkflowTypeId = source.WorkflowTypeId;
            this.Guid = source.Guid;
            this.ForeignId = source.ForeignId;
        }
WorkflowTriggerEntity