mirror of
https://github.com/holub/mame
synced 2025-05-07 23:02:33 +03:00
15 lines
166 B
C
15 lines
166 B
C
// Property.h
|
|
|
|
#ifndef __7Z_PROPERTY_H
|
|
#define __7Z_PROPERTY_H
|
|
|
|
#include "../../../Common/MyString.h"
|
|
|
|
struct CProperty
|
|
{
|
|
UString Name;
|
|
UString Value;
|
|
};
|
|
|
|
#endif
|