fix SubsystemOperationTimeRequest. wrong number format at exception message

This commit is contained in:
ngfrolov 2023-11-02 11:01:07 +05:00
parent 05de113e9e
commit 2c14aabe05
Signed by: ng.frolov
GPG Key ID: E99907A0357B29A7

View File

@ -84,7 +84,7 @@ namespace AsbCloudApp.Requests
{
if (LtDepth < GtDepth)
yield return new ValidationResult(
$"{nameof(LtDepth)} должно быть больше {nameof(GtDepth)}. ({LtDepth:O} < {GtDepth:O})",
$"{nameof(LtDepth)} должно быть больше {nameof(GtDepth)}. ({LtDepth} < {GtDepth})",
new[] { nameof(LtDepth), nameof(GtDepth) });
}