23 lines
692 B
C#
23 lines
692 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Web;
|
|
using Weee.Models;
|
|
|
|
namespace Weee.ViewModels.Lca
|
|
{
|
|
public class LcaOtherCompoundViewModel : ViewModelBase
|
|
{
|
|
//public List<>
|
|
public List<OrganizationLCAFabSurveyForm_OtherCompounds> OtherCompounds { get; set; }
|
|
public Dictionary<int, string> Options { get; set; }
|
|
public SheetHeader SheetHeader { get; set; }
|
|
public LcaOtherCompoundViewModel()
|
|
{
|
|
OtherCompounds = new List<OrganizationLCAFabSurveyForm_OtherCompounds>();
|
|
Options = new Dictionary<int, string>();
|
|
SheetHeader = new SheetHeader();
|
|
}
|
|
}
|
|
}
|