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

CopyPropertiesFrom() public method

Copies the base properties from a source InteractionDeviceType object
public CopyPropertiesFrom ( InteractionDeviceType source ) : void
source InteractionDeviceType The source.
return void
        public void CopyPropertiesFrom( InteractionDeviceType source )
        {
            this.Id = source.Id;
            this.Application = source.Application;
            this.ClientType = source.ClientType;
            this.DeviceTypeData = source.DeviceTypeData;
            this.ForeignGuid = source.ForeignGuid;
            this.ForeignKey = source.ForeignKey;
            this.ModifiedAuditValuesAlreadyUpdated = source.ModifiedAuditValuesAlreadyUpdated;
            this.Name = source.Name;
            this.OperatingSystem = source.OperatingSystem;
            this.CreatedDateTime = source.CreatedDateTime;
            this.ModifiedDateTime = source.ModifiedDateTime;
            this.CreatedByPersonAliasId = source.CreatedByPersonAliasId;
            this.ModifiedByPersonAliasId = source.ModifiedByPersonAliasId;
            this.Guid = source.Guid;
            this.ForeignId = source.ForeignId;
        }
InteractionDeviceTypeEntity