21 lines
738 B
C#
21 lines
738 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Web;
|
|
using Weee.Models.Paramemter;
|
|
using PagedList;
|
|
|
|
namespace Weee.Areas.Admin.ViewModels
|
|
{
|
|
public class SimaproIndexViewModel
|
|
{
|
|
public SimaproVersion SimaproVersion { get; set; }
|
|
public SimaproParameterCategory SimaproParameterCategory { get; set; }
|
|
public SimaproParameterType SimaproParameterType { get; set; }
|
|
public List<SimaproVersion> SimaproVersions { get; set; }
|
|
public List<SimaproParameterCategory> SimaproParameterCategories { get; set; }
|
|
public List<SimaproParameterType> SimaproParameterTypes { get; set; }
|
|
|
|
public IPagedList<SimaproParameter> parameters { get; set; }
|
|
}
|
|
} |