add DocSignedNotificationStatusHandler and implement the natification into EnveloepControler

This commit is contained in:
2025-09-03 16:24:51 +02:00
parent aafed0f4f4
commit fb5d2110bd
5 changed files with 48 additions and 38 deletions

View File

@@ -14,6 +14,12 @@ namespace EnvelopeGenerator.Domain.Constants
Formatting = Formatting.Indented,
NullValueHandling = NullValueHandling.Include
};
public static readonly JsonSerializerSettings ForAnnotations = new JsonSerializerSettings()
{
ContractResolver = new CamelCasePropertyNamesContractResolver(),
Formatting = Formatting.None,
NullValueHandling = NullValueHandling.Ignore
};
}
#endregion
}