using System.Collections.Generic; using OrchardCore.DisplayManagement; namespace Flowsharp.Web.ViewComponents.ViewModels { public class ActivityLibraryViewModel { public ActivityLibraryViewModel(IEnumerable activityShapes) { ActivityShapes = activityShapes; } public IEnumerable ActivityShapes { get; } } }