1234567891011121314151617181920 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Web;
- namespace FMSAdmin.Models {
- public class PointToLocation {
- public PointToLocation() {
- }
- public int SiteId { get; set; }
- public int FacilityCode { get; set; }
- public int PropertyId { get; set; }
- public int? BuildingId { get; set; }
- public int? FloorId { get; set; }
- public int? ZoneId { get; set; }
- };
- }
|