demo20230512/ViewModels/Lca/LcaOtherCompoundViewModel.cs

23 lines
692 B
C#
Raw Normal View History

2023-05-12 10:20:28 +08:00
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();
}
}
}