The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
// Property.h

#ifndef __PROPERTY_H
#define __PROPERTY_H

#include "Common/MyString.h"

struct CProperty
{
  UString Name;
  UString Value;
};

#endif