namespace Oqtane.Models
{
///
/// Internal message used internally during installation.
///
/// Each part of the installation will return the status / message when installing.
///
public class Installation
{
///
/// Status if everything worked.
///
public bool Success { get; set; }
///
/// Message or error in case something failed.
///
public string Message { get; set; }
///
/// current alias value from server
///
public Alias Alias { get; set; }
}
}