From 8a575d5e47af90c5a6e13b57e9353000d14f47a8 Mon Sep 17 00:00:00 2001 From: carlitoxv3 Date: Sat, 25 Aug 2018 13:37:11 -0300 Subject: [PATCH] Change ISBN property type The property ISBN has a definition of Person type no string. --- CreativeWorks/Book.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CreativeWorks/Book.cs b/CreativeWorks/Book.cs index a3a744a..2f448d9 100644 --- a/CreativeWorks/Book.cs +++ b/CreativeWorks/Book.cs @@ -57,7 +57,7 @@ public class Book : CreativeWork, MXTires.Microdata.CreativeWorks.IBook /// Text - The ISBN of the book. /// [JsonProperty("isbn")] - public Person Isbn { get; set; } + public string Isbn { get; set; } /// /// Integer - The number of pages in the book. @@ -65,4 +65,4 @@ public class Book : CreativeWork, MXTires.Microdata.CreativeWorks.IBook [JsonProperty("numberOfPages")] public Int32? NumberOfPages { get; set; } } -} \ No newline at end of file +}