using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Web.Mvc; using System.ComponentModel.DataAnnotations; using Sleis.Validation.Attribute; namespace Sleis.Models { public class EpaReleasePointGasFlowRate : EpaBaseObject { public virtual string ConversionFactor { get; set; } public virtual string Note { get; set; } public virtual string MapTo { get; set; } } }