PointToLocation.cs 463 B

1234567891011121314151617181920
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Web;
  5. namespace FMSAdmin.Models {
  6. public class PointToLocation {
  7. public PointToLocation() {
  8. }
  9. public int SiteId { get; set; }
  10. public int FacilityCode { get; set; }
  11. public int PropertyId { get; set; }
  12. public int? BuildingId { get; set; }
  13. public int? FloorId { get; set; }
  14. public int? ZoneId { get; set; }
  15. };
  16. }