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

CopyPropertiesFrom() public method

Copies the base properties from a source FollowingSuggestionType object
public CopyPropertiesFrom ( FollowingSuggestionType source ) : void
source FollowingSuggestionType The source.
return void
        public void CopyPropertiesFrom( FollowingSuggestionType source )
        {
            this.Id = source.Id;
            this.Description = source.Description;
            this.EntityNotificationFormatLava = source.EntityNotificationFormatLava;
            this.EntityTypeId = source.EntityTypeId;
            this.ForeignGuid = source.ForeignGuid;
            this.ForeignKey = source.ForeignKey;
            this.IsActive = source.IsActive;
            this.ModifiedAuditValuesAlreadyUpdated = source.ModifiedAuditValuesAlreadyUpdated;
            this.Name = source.Name;
            this.Order = source.Order;
            this.ReasonNote = source.ReasonNote;
            this.ReminderDays = source.ReminderDays;
            this.CreatedDateTime = source.CreatedDateTime;
            this.ModifiedDateTime = source.ModifiedDateTime;
            this.CreatedByPersonAliasId = source.CreatedByPersonAliasId;
            this.ModifiedByPersonAliasId = source.ModifiedByPersonAliasId;
            this.Guid = source.Guid;
            this.ForeignId = source.ForeignId;
        }
FollowingSuggestionTypeEntity