Files
Umbraco-CMS/src/Umbraco.Cms.Api.Management/ViewModels/Package/PackageMigrationStatusResponseModel.cs
Nikolaj Geisle 5107375cd8 V13/feature/rename viewmodels to request response (#13952)
* Rename DocumentType/ContentType models

* Rename all viewmodels

* Rename factories

* Update OpenApi.json

---------

Co-authored-by: Zeegaan <nge@umbraco.dk>
2023-03-13 10:49:21 +01:00

15 lines
439 B
C#

namespace Umbraco.Cms.Api.Management.ViewModels.Package;
public class PackageMigrationStatusResponseModel
{
/// <summary>
/// Gets or sets the name of the package.
/// </summary>
public required string PackageName { get; set; }
/// <summary>
/// Gets or sets a value indicating whether the package has any pending migrations to run.
/// </summary>
public bool HasPendingMigrations { get; set; }
}