/// <inheritdoc />
        public object Clone()
        {
            var copy = new BlogDto();

            copy.CopyPublicProperties(this);
            return(copy);
        }
 public void CopyFrom(BlogDto other)
 {
     this.CopyPublicProperties(other);
 }