#pragma once
using namespace System;
namespace Tango
{
namespace FirmwareUpdateLib
{
///
/// Represents an optional information which will be written to the top of the
/// flash memory and can be used to save important data about the current saved image.
///
public ref class TwineDFUExtras
{
public:
///
/// Determines whether the twine extras were found.
///
property bool HasExtras;
///
/// The date and time for the last upload operation on this device.
///
property DateTime^ UploadDateTime;
///
/// The version of the last uploaded image.
///
property Version^ Version;
///
/// Optional comments (Max 100 ASCII characters).
///
property String^ Comments;
///
/// The size of the last uploaded image.
///
property int ImageLength;
};
}
}