using System;
namespace Xylem.Common.Hardware.WaterMeter.Genesis.GenesisFile
{
///
/// Genesis meter files which have to be restored after the FW-Update.
///
public class MeterFileRestore
{
///
/// This defines an exact name only e.g. "1\\tstfile"
///
public String Name;
///
/// Size of the file in bytes.
///
public Int32 ByteSize;
///
/// Pattern to write in file, if null the size has just to be generated with FSeek.
///
public Char? Pattern;
}
}