mirror of
https://github.com/Xevion/easy7zip.git
synced 2025-12-08 10:07:02 -06:00
15 lines
166 B
C
Executable File
15 lines
166 B
C
Executable File
// Property.h
|
|
|
|
#ifndef __7Z_PROPERTY_H
|
|
#define __7Z_PROPERTY_H
|
|
|
|
#include "../../../Common/MyString.h"
|
|
|
|
struct CProperty
|
|
{
|
|
UString Name;
|
|
UString Value;
|
|
};
|
|
|
|
#endif
|