forked from poppastring/dasblog-core
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add CloudEvents support poppastring#671
- Loading branch information
Showing
18 changed files
with
572 additions
and
179 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
using System; | ||
using System.Text.Json.Serialization; | ||
|
||
namespace DasBlog.Managers | ||
{ | ||
internal class EntryCloudEventData | ||
{ | ||
[JsonPropertyName("id")] | ||
public string Id { get; internal set; } | ||
[JsonPropertyName("title")] | ||
public string Title { get; internal set; } | ||
[JsonPropertyName("createdUtc")] | ||
public DateTime CreatedUtc { get; internal set; } | ||
[JsonPropertyName("modifiedUtc")] | ||
public DateTime ModifiedUtc { get; internal set; } | ||
[JsonPropertyName("tags")] | ||
public string Tags { get; internal set; } | ||
[JsonPropertyName("description")] | ||
public string Description { get; internal set; } | ||
[JsonPropertyName("permaLink")] | ||
public string PermaLink { get; internal set; } | ||
[JsonPropertyName("contentLink")] | ||
public string DetailsLink { get; internal set; } | ||
[JsonPropertyName("isPublic")] | ||
public bool IsPublic { get; internal set; } | ||
[JsonPropertyName("author")] | ||
public string Author { get; internal set; } | ||
[JsonPropertyName("longitude")] | ||
public double? Longitude { get; internal set; } | ||
[JsonPropertyName("latitude")] | ||
public double? Latitude { get; internal set; } | ||
|
||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.