Fix(?) xmldoc

This commit is contained in:
Dean Herbert 2024-07-10 18:57:53 +09:00
parent 704e7e843f
commit 6cee0210c3
No known key found for this signature in database
1 changed files with 3 additions and 3 deletions

View File

@ -35,12 +35,12 @@ public interface IModelImporter<TModel> : IPostNotifications, ICanAcceptFiles
Task<Live<TModel>?> ImportAsUpdate(ProgressNotification notification, ImportTask task, TModel original);
/// <summary>
/// Mount all files for a <see cref="TModel"/> to a temporary directory to allow for external editing.
/// Mount all files for a model to a temporary directory to allow for external editing.
/// </summary>
/// <remarks>
/// When editing is completed, call <see cref="ExternalEditOperation{TModel}.Finish"/> to begin the import-and-update process.
/// When editing is completed, call Finish() on the returned operation class to begin the import-and-update process.
/// </remarks>
/// <param name="model">The <see cref="TModel"/> to mount.</param>
/// <param name="model">The model to mount.</param>
public Task<ExternalEditOperation<TModel>> BeginExternalEditing(TModel model);
/// <summary>