using System.Collections.Generic; using Pilotfish.Afx.Services.Workflows.Entities; namespace Neo.Legitimate.Web.Models { public class HomeModel { public long UserID { get; set; } public IEnumerable UserRoles { get; set; } public List WorkflowTemplates; public List OutstandingTasks; public List WorkflowInstancesInProgress; public object Lookups; } }