All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
InteriorEntitiesChunkDto.h
1 // Copyright eeGeo Ltd (2012-2015), All Rights Reserved
2 
3 #pragma once
4 
5 #include "Interiors.h"
6 
7 #include <vector>
8 #include <string>
9 
10 namespace Eegeo
11 {
12  namespace Resources
13  {
14  namespace Interiors
15  {
16  namespace Builder
17  {
19  {
20  InteriorEntitiesChunkDto(const std::vector<std::string>& entityIdentifiers)
21  : m_entityIdentifiers(entityIdentifiers)
22  {}
23 
24  const std::vector<std::string>& EntityIdentifiers() const { return m_entityIdentifiers; }
25 
26  private:
27  std::vector<std::string> m_entityIdentifiers;
28  };
29  }
30  }
31  }
32 }