From a3049e3279339b217d18f63b7f85155e6b3650dc Mon Sep 17 00:00:00 2001 From: Derek Stegelman Date: Tue, 9 Dec 2025 14:21:52 -0700 Subject: [PATCH] Change problem details nullability --- .../CsuChhs.WebComponents.RestTools.csproj | 2 +- .../ResourceModels/ProblemDetails.cs | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) 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