GetAreasResponse.cs 158 B

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