demo20230512/Models/Interface/SheetData.cs

19 lines
404 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.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; }
}
}