Skip to content
This repository was archived by the owner on Aug 30, 2025. It is now read-only.

Commit de6ad18

Browse files
committed
fix: Chnages protected level of the PROBLEM_MEDIA_TYPE_JSON;
1 parent 624a077 commit de6ad18

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

src/ProblemDetailsDefaults.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,11 @@ internal static class ProblemDetailsDefaults
66
{
77
public const string PROBLEM_MEDIA_TYPE_JSON = "application/problem+json";
88

9-
public const int FALLBACK_STATUS_CODE = 500;
9+
internal const int FALLBACK_STATUS_CODE = 500;
1010

11-
public const string DEFAULT_ERROR_CODE = "INVALID";
11+
internal const string DEFAULT_ERROR_CODE = "INVALID";
1212

13-
public static readonly Dictionary<int, (string Title, string Link)> Defaults = new()
13+
internal static readonly Dictionary<int, (string Title, string Link)> Defaults = new()
1414
{
1515
[0] = ("Unknown error", "https://tools.ietf.org/html/rfc7231#section-6"),
1616

0 commit comments

Comments
 (0)