-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Brend Smits <brend.smits@philips.com>
- Loading branch information
1 parent
1c7e949
commit 71b6844
Showing
9 changed files
with
92 additions
and
99 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,40 +1,28 @@ | ||
using System; | ||
using System.Collections.Generic; | ||
using System.Text; | ||
using System.Collections.Generic; | ||
using System.Text.Json.Serialization; | ||
|
||
namespace PostMediumGitHubAction.Domain | ||
{ | ||
public class MediumCreatedPost | ||
{ | ||
[JsonPropertyName("id")] | ||
public string Id { get; set; } | ||
[JsonPropertyName("id")] public string Id { get; set; } | ||
|
||
[JsonPropertyName("title")] | ||
public string Title { get; set; } | ||
[JsonPropertyName("title")] public string Title { get; set; } | ||
|
||
[JsonPropertyName("authorId")] | ||
public string AuthorId { get; set; } | ||
[JsonPropertyName("authorId")] public string AuthorId { get; set; } | ||
|
||
[JsonPropertyName("url")] | ||
public string Url { get; set; } | ||
[JsonPropertyName("url")] public string Url { get; set; } | ||
|
||
[JsonPropertyName("canonicalUrl")] | ||
public string CanonicalUrl { get; set; } | ||
[JsonPropertyName("canonicalUrl")] public string CanonicalUrl { get; set; } | ||
|
||
[JsonPropertyName("publishStatus")] | ||
public string PublishStatus { get; set; } | ||
[JsonPropertyName("publishStatus")] public string PublishStatus { get; set; } | ||
|
||
[JsonPropertyName("license")] | ||
public string License { get; set; } | ||
[JsonPropertyName("license")] public string License { get; set; } | ||
|
||
[JsonPropertyName("licenseUrl")] | ||
public string LicenseUrl { get; set; } | ||
[JsonPropertyName("licenseUrl")] public string LicenseUrl { get; set; } | ||
|
||
[JsonPropertyName("tags")] | ||
public List<string> Tags { get; set; } | ||
[JsonPropertyName("tags")] public List<string> Tags { get; set; } | ||
|
||
[JsonPropertyName("publicationId")] | ||
public string PublicationId { get; set; } | ||
[JsonPropertyName("publicationId")] public string PublicationId { get; 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,3 @@ | ||
using System.Collections.Generic; | ||
using System.Text.Json.Serialization; | ||
|
||
namespace PostMediumGitHubAction.Domain | ||
|
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 |
---|---|---|
@@ -1,4 +1,3 @@ | ||
using System.Collections.Generic; | ||
using System.Text.Json.Serialization; | ||
|
||
namespace PostMediumGitHubAction.Domain | ||
|
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