Date | 2022-09-06 (801 days ago) |
---|---|
Downloads | 384 downloads |
NuGet | View on NuGet |
GitHub | View on GitHub |
Target Frameworks | .NET Standard 2.0 .NET 5 .NET 6 |
#installation
">InstallationInstall the NuGet package - either via the .NET CLI:
dotnet add package Limbo.Integrations.Signatur --version 1.0.2
or the NuGet package manager:
Install-Package Limbo.Integrations.Signatur -Version 1.0.2
#changelog
">ChangelogUpdated package to better support extending the default parser and models
Besides the default SignaturFeedParser
, it's now also possible to extend the new SignaturFeedParser<TFeed, TItem>
class to parse a feed and it's items into custom models.
SignaturItem.Deadline
property is now of type DateTimeOffset?
instead of string?
When testing across a handful of different clients, there seems to be two different date formats, which the package will now be able detect, and thus the deadline is now represented by a DateTimeOffset?
instance instead of string?
.