diff --git a/CsuChhs.WebComponents.RestTools/CsuChhs.WebComponents.RestTools.csproj b/CsuChhs.WebComponents.RestTools/CsuChhs.WebComponents.RestTools.csproj
index 5199c97..aa89df9 100644
--- a/CsuChhs.WebComponents.RestTools/CsuChhs.WebComponents.RestTools.csproj
+++ b/CsuChhs.WebComponents.RestTools/CsuChhs.WebComponents.RestTools.csproj
@@ -6,7 +6,7 @@
enable
true
CHHS Application Development Team
- 1.0.3
+ 1.0.4
https://github.com/csu-chhs/CsuChhs.WebComponents.RestTools
College of Health and Human Sciences
CsuChhs.WebComponents.RestTools
diff --git a/CsuChhs.WebComponents.RestTools/ResourceModels/ProblemDetails.cs b/CsuChhs.WebComponents.RestTools/ResourceModels/ProblemDetails.cs
index 1a10a5d..23894a0 100644
--- a/CsuChhs.WebComponents.RestTools/ResourceModels/ProblemDetails.cs
+++ b/CsuChhs.WebComponents.RestTools/ResourceModels/ProblemDetails.cs
@@ -2,9 +2,9 @@ namespace CsuChhs.WebComponents.RestTools.ResourceModels;
public class ProblemDetails
{
- public string Type { get; set; } = string.Empty;
- public string Title { get; set; } = string.Empty;
+ public string? Type { get; set; }
+ public string? Title { get; set; }
public int? Status { get; set; }
- public string Detail { get; set; } = string.Empty;
- public string Instance { get; set; } = string.Empty;
+ public string? Detail { get; set; }
+ public string? Instance { get; set; }
}
\ No newline at end of file