feat: Standardizing JSON Type conversion

This commit is contained in:
Chris Cameron
2020-06-01 10:27:42 -04:00
parent f53d05936c
commit 28ea05e2f6
4 changed files with 42 additions and 0 deletions

View File

@@ -40,6 +40,9 @@ namespace ICD.Common.Utils.Json
// Serialize DateTimes to ISO
s_CommonSettings.Converters.Add(new DateTimeIsoConverter());
// Minify Type serialization
s_CommonSettings.Converters.Add(new MinimalTypeConverter());
return s_CommonSettings;
}
}