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:
@@ -60,7 +60,8 @@ namespace PepApi.Core
|
|||||||
MaterialGrade = nest.MaterialGrade,
|
MaterialGrade = nest.MaterialGrade,
|
||||||
Notes = nest.Notes,
|
Notes = nest.Notes,
|
||||||
HasErrors = !nest.Errors.IsNullOrWhiteSpace(),
|
HasErrors = !nest.Errors.IsNullOrWhiteSpace(),
|
||||||
Revision = nest.UserDefined1
|
Revision = nest.UserDefined1,
|
||||||
|
Application = "N/A"
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user