using System.Collections.Generic; using Neo.Legitimate.Data.Models; using Pilotfish.Afx.Services.Reports; namespace Neo.Legitimate.Applications.Models { public class ReportModel { public long UserID { get; set; } public IEnumerable UserRoles { get; set; } public IEnumerable ReportDefinitions; public object Lookups; } }