fix(extensions): initialize Application property in NestSummary

Set Application to "N/A" when converting from PepLib.Nest to satisfy
the required property constraint.

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
2025-10-29 15:29:23 -04:00
parent c259035773
commit c2c7fc2f9d

View File

@@ -60,7 +60,8 @@ namespace PepApi.Core
MaterialGrade = nest.MaterialGrade,
Notes = nest.Notes,
HasErrors = !nest.Errors.IsNullOrWhiteSpace(),
Revision = nest.UserDefined1
Revision = nest.UserDefined1,
Application = "N/A"
};
}
}