12345678910111213141516171819202122 |
- namespace iBemsDataService.Model
- {
- using System;
- using System.Collections.Generic;
-
- public partial class BemsFloorPlan
- {
- public int SiteId { get; set; }
- public int FloorId { get; set; }
- public string Name { get; set; }
- public Nullable<int> ImageFileId { get; set; }
- }
- }
|