using System; using System.Collections.Generic; using System.ComponentModel; using System.ComponentModel.DataAnnotations.Schema; using System.Linq; using System.Runtime.CompilerServices; using System.Text; using System.Threading.Tasks; namespace GDNXFD.Data { [Table("INPUTOROUTPUTSPEEDTOTAL")] public class InputOrOutputSpeedTotal { [Column("ID")] public int Id { get; set; } [Column("WINDTURBINEID")] public string WindturbineId { get; set; } [Column("RECORDDATE")] public DateTime RecordDate { get; set; } [Column("INPUTSMALL")] public double InputSmall { get; set; } } }