Refactor AppModels according to refined API spec #5
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Related to #4
Refactor AppModels to align with the refined API specification.
IReadOnlyEntityinterface with common properties and events.IModifiableEntityinterface with common methods for updating properties.IReadOnlyUserto inherit fromIReadOnlyEntity, removeMarkdownAboutMeandIconproperties, addExtendedDescriptionproperty, and add methods for retrieving publishers and projects along with their roles.IModifiableUserto inherit fromIModifiableEntity, removeUpdateMarkdownAboutMeAsyncandUpdateIconAsyncmethods, and add methods for adding/removing publishers and projects along with their roles.IReadOnlyPublisherto inherit fromIReadOnlyEntity, removeOwner,ContactEmail, andIconproperties, addExtendedDescriptionandForgetMeproperties, add methods for retrieving users along with their roles, and add properties for Connections and Links.IModifiablePublisherto inherit fromIModifiableEntity, removeUpdateOwnerAsyncandUpdateIconAsyncmethods, add methods for adding/removing users along with their roles, and add methods for adding/removing connections and links.IReadOnlyProjectto inherit fromIReadOnlyEntity, removeHeroImage,CreatedAt, andIconproperties, addExtendedDescriptionproperty, and replaceCidandDagCidwithIReadOnlyConnection.IModifiableProjectto inherit fromIModifiableEntity, removeUpdateHeroImageAsyncandUpdateIconAsyncmethods, add methods for adding/removing connections, and replaceCidandDagCidwithIReadOnlyConnection.IReadOnlyConnectioninterface with propertiesKeyandValue, and event handlers for ValueChanged.IModifiableConnectioninterface with methods for updatingKeyandValue.For more details, open the Copilot Workspace session.