19 lines
404 B
C#
19 lines
404 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Weee.Models
|
|
{
|
|
public interface SheetData
|
|
{
|
|
int ID { get; set; }
|
|
int LCAID { get; set; }
|
|
int? ParameterID { get; set; }
|
|
decimal Scalar { get; set; }
|
|
decimal KgCO2e { get; set; }
|
|
string Description { get; set; }
|
|
}
|
|
}
|