Skip to content

Instantly share code, notes, and snippets.

@bjoerntx
Created June 8, 2022 08:57
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bjoerntx/b49936589b21d7104f0cb26a34be7ec7 to your computer and use it in GitHub Desktop.
Save bjoerntx/b49936589b21d7104f0cb26a34be7ec7 to your computer and use it in GitHub Desktop.
private class Report {
public string Company { get; set; }
public Hyperlink Website { get; set; }
}
private class Hyperlink {
public string Target { get; set; }
public string Text { get; set; }
public override string ToString() {
return Text;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment