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