29 lines
740 B
C#
29 lines
740 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
using System.Linq;
|
|
using System.Web;
|
|
|
|
namespace Weee.Models
|
|
{
|
|
#region FabSurveyFormCommonProperty
|
|
public abstract class CommonProperty
|
|
{
|
|
public CommonProperty()
|
|
{
|
|
CreatedTime = DateTime.UtcNow;
|
|
}
|
|
public string ProcessName { get; set; }
|
|
public string ResponsibleUnit { get; set; }
|
|
public string Name { get; set; }
|
|
|
|
public decimal Scalar { get; set; }
|
|
public decimal KgCO2e { get; set; }
|
|
[Column(TypeName = "DateTime2")]
|
|
public DateTime CreatedTime { get; set; }
|
|
|
|
public string Description { get; set; }
|
|
}
|
|
#endregion
|
|
|
|
} |