Skip to content

Commit 2f33dd6

Browse files
committed
add missing dto
1 parent 33f0ea3 commit 2f33dd6

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)