Skip to content

Commit

Permalink
Add property to access metatags robots (#196)
Browse files Browse the repository at this point in the history
Co-authored-by: Ian Leeder <ileeder@intuitiveit.com.au>
  • Loading branch information
ianleeder and Ian Leeder authored May 31, 2023
1 parent 4bc4169 commit cd4389e
Showing 1 changed file with 6 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -72,5 +72,11 @@ public string CanonicalUrl
get => GetValue<string>(SeoFieldAliasConstants.CanonicalUrl);
set => SetValue(SeoFieldAliasConstants.CanonicalUrl, value);
}

public string[] Robots
{
get => GetValue<string[]>(SeoFieldAliasConstants.Robots);
set => SetValue(SeoFieldAliasConstants.Robots, value);
}
}
}

0 comments on commit cd4389e

Please sign in to comment.