From 54ab73556265266a791365641bfffc379592fcc1 Mon Sep 17 00:00:00 2001 From: Starbeamrainbowlabs Date: Mon, 5 Aug 2019 01:05:34 +0100 Subject: [PATCH] Document AuthorName and AuthorUrl properties --- PolyFeed/FeedSource.cs | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/PolyFeed/FeedSource.cs b/PolyFeed/FeedSource.cs index 5a9de37..e9dc5a8 100644 --- a/PolyFeed/FeedSource.cs +++ b/PolyFeed/FeedSource.cs @@ -96,7 +96,14 @@ namespace PolyFeed /// public SelectorSettings LastUpdated { get; set; } + /// + /// The selector for the name of the author of an entry. + /// public SelectorSettings AuthorName { get; set; } + /// + /// The selector for the url that points to a page that represents + /// the author of an entry. + /// public SelectorSettings AuthorUrl { get; set; } }