1234567891011121314151617181920212223 |
- namespace iBemsDataService.Model
- {
- using System;
- using System.Collections.Generic;
-
- public partial class BemsPeakFacility
- {
- public int SiteId { get; set; }
- public System.DateTime MaxDateTime { get; set; }
- public int FacilityCode { get; set; }
-
- public virtual CmFacility CmFacility { get; set; }
- }
- }
|