1234567891011121314151617181920212223242526 |
- namespace iBemsDataService.Model
- {
- using System;
- using System.Collections.Generic;
-
- public partial class BemsIceThermalStorageSimulation
- {
- public int SiteId { get; set; }
- public int FacilityTypeId { get; set; }
- public int FacilityCode { get; set; }
- public int PropertyId { get; set; }
- public System.DateTime CreatedDateTime { get; set; }
- public System.DateTime TargetDateTime { get; set; }
- public Nullable<double> SimulationValue { get; set; }
- public int SimulationCase { get; set; }
- }
- }
|