aboutsummaryrefslogtreecommitdiff
path: root/back-end/src/Model/PostMeta.cs
diff options
context:
space:
mode:
authorLibravatar vnugent <public@vaughnnugent.com>2023-09-30 21:43:19 -0400
committerLibravatar vnugent <public@vaughnnugent.com>2023-09-30 21:43:19 -0400
commit95d60952b3ea470495003b0d0e51840cd8e68605 (patch)
tree79f5179c4dd9349c7b88b7b1d2ed13b53152d166 /back-end/src/Model/PostMeta.cs
parent62da31eb31baf7e27bf4c6d3d15e2c69617e2f74 (diff)
configure html podcast description support and minor ui tweaks
Diffstat (limited to 'back-end/src/Model/PostMeta.cs')
-rw-r--r--back-end/src/Model/PostMeta.cs3
1 files changed, 3 insertions, 0 deletions
diff --git a/back-end/src/Model/PostMeta.cs b/back-end/src/Model/PostMeta.cs
index 2bb963e..ce92c7e 100644
--- a/back-end/src/Model/PostMeta.cs
+++ b/back-end/src/Model/PostMeta.cs
@@ -43,6 +43,9 @@ namespace Content.Publishing.Blog.Admin.Model
[JsonPropertyName("summary")]
public string? Summary { get; set; }
+ [JsonPropertyName("html_description")]
+ public string? HtmlDescription { get; set; }
+
[JsonPropertyName("tags")]
public string[]? Tags { get; set; }