From 3b9f73c86e0623ec3163c15a5d29acac6169fec3 Mon Sep 17 00:00:00 2001 From: Wes Kroesbergen Date: Mon, 15 Jun 2020 11:13:42 -0400 Subject: [PATCH] Support UpdatedDate attribute --- Microsoft.Toolkit.Parsers/Rss/RssSchema.cs | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/Microsoft.Toolkit.Parsers/Rss/RssSchema.cs b/Microsoft.Toolkit.Parsers/Rss/RssSchema.cs index 3ea8b7453ee..23230d2e676 100644 --- a/Microsoft.Toolkit.Parsers/Rss/RssSchema.cs +++ b/Microsoft.Toolkit.Parsers/Rss/RssSchema.cs @@ -57,9 +57,14 @@ public class RssSchema : SchemaBase /// public DateTime PublishDate { get; set; } + /// + /// Gets or sets updated Date. + /// + public DateTime UpdatedDate { get; set; } + /// /// Gets or sets item's categories. /// public IEnumerable Categories { get; set; } } -} \ No newline at end of file +}