Property.h 151 B

1234567891011121314
  1. // Property.h
  2. #ifndef __PROPERTY_H
  3. #define __PROPERTY_H
  4. #include "Common/MyString.h"
  5. struct CProperty
  6. {
  7. UString Name;
  8. UString Value;
  9. };
  10. #endif