GetBuildingResponse.cs 165 B

123456789
  1. using System.Collections.Generic;
  2. namespace DeviceCenter.model
  3. {
  4. class GetBuildingResponse
  5. {
  6. public List<Building> content { get; set; }
  7. }
  8. }