From b0e8c3d6243b3bb313c10c4c6fe7b12bf86a90bf Mon Sep 17 00:00:00 2001 From: blancfabian Date: Mon, 8 Apr 2024 13:00:36 -0300 Subject: [PATCH] chore: new problem property to return UI messages --- .../ExceptionHandling/Problem.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/MakingSense.AspNetCore.HypermediaApi/ExceptionHandling/Problem.cs b/src/MakingSense.AspNetCore.HypermediaApi/ExceptionHandling/Problem.cs index 0fffee6..a74551e 100644 --- a/src/MakingSense.AspNetCore.HypermediaApi/ExceptionHandling/Problem.cs +++ b/src/MakingSense.AspNetCore.HypermediaApi/ExceptionHandling/Problem.cs @@ -14,6 +14,7 @@ public abstract class Problem : BaseModel public abstract string detail { get; } public abstract int status { get; } public abstract int errorCode { get; } + public virtual string message { get; set; } public virtual string type => $"{Path}{status}.{errorCode}-{title.ToLower().Replace(", ", ",").Replace(",", " ").Replace(" ", "-")}";