Files
Orchard/src/Orchard.Web/Modules/Orchard.Recipes/ViewModels/SetupRecipeStepViewModel.cs
T
Sipke Schoorstra 06996f63d0 Refactored SetupRecipeStep into RecipeMetadataStep.
This enables users to configure the recipe's metadata without having to turn it into a Setup recipe.
2015-07-15 10:52:12 +01:00

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; }
}
}