mirror of
https://github.com/OrchardCMS/Orchard.git
synced 2026-02-09 09:16:41 +08:00
This enables users to configure the recipe's metadata without having to turn it into a Setup recipe.
11 lines
435 B
C#
11 lines
435 B
C#
namespace Orchard.Recipes.ViewModels {
|
|
public class SetupRecipeStepViewModel {
|
|
public string RecipeName { get; set; }
|
|
public string RecipeDescription { get; set; }
|
|
public string RecipeAuthor { get; set; }
|
|
public string RecipeWebsite { get; set; }
|
|
public string RecipeTags { get; set; }
|
|
public string RecipeVersion { get; set; }
|
|
public bool IsSetupRecipe { get; set; }
|
|
}
|
|
} |