23 lines
655 B
C#
23 lines
655 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Weee.ViewModels
|
|
{
|
|
public class ARnGWPExcelViewModel
|
|
{
|
|
public int ID { get; set; }
|
|
public string ingredientName { get; set; }
|
|
public string chemicalFormula { get; set; }
|
|
public decimal AR4GWP100 { get; set; }
|
|
public decimal AR5GWP100 { get; set; }
|
|
public decimal AR6GWP100 { get; set; }
|
|
public string ChineseName { get; set; }
|
|
public string Alias { get; set; }
|
|
public string GHGType { get; set; }
|
|
public int GWPtype { get; set; }
|
|
}
|
|
}
|