class MAGES::StartupData::DataEntry¶
Overview¶
A data entry. More…
class DataEntry
{
public:
// properties
string Key;
string Value;
// methods
DataEntry(string key, string value);
};
Detailed Documentation¶
A data entry.
Properties¶
string Key
Gets the key of the data entry.
string Value
Gets the value of the data entry.
Methods¶
DataEntry(string key, string value)
Initializes a new instance of the DataEntry class.
Parameters:
key |
The key of the data entry. |
value |
The value of the data entry. |