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