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