xref: /aosp_15_r20/external/lzma/CPP/7zip/UI/Common/Property.h (revision f6dc9357d832569d4d1f5d24eacdb3935a1ae8e6)
1 // Property.h
2 
3 #ifndef ZIP7_INC_7Z_PROPERTY_H
4 #define ZIP7_INC_7Z_PROPERTY_H
5 
6 #include "../../../Common/MyString.h"
7 
8 struct CProperty
9 {
10   UString Name;
11   UString Value;
12 };
13 
14 #endif
15