We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 33f0ea3 commit 2f33dd6Copy full SHA for 2f33dd6
src/Umbraco.Cms.Integrations.Automation.Zapier/Models/Dtos/PublishedContentDto.cs
@@ -0,0 +1,16 @@
1
+using Newtonsoft.Json;
2
+
3
+namespace Umbraco.Cms.Integrations.Automation.Zapier.Models.Dtos
4
+{
5
+ public class PublishedContentDto
6
+ {
7
+ [JsonProperty("id")]
8
+ public int Id { get; set; }
9
10
+ [JsonProperty("name")]
11
+ public string Name { get; set; }
12
13
+ [JsonProperty("publishDate")]
14
+ public string PublishDate { get; set; }
15
+ }
16
+}
0 commit comments