public override bool VerifyChanges()
        {
            var value = SystemConfigService.GetCurrentValue(this.Name);

            if (!this.Value.Equals(value))
            {
                this.LastValue   = this.Value;
                this.Value       = value;
                this.MonitoredAt = DateTime.Now;
                return(true);
            }

            return(false);
        }