using System; using System.Collections.Generic; namespace Xylem.Common.Hardware.WaterMeter.Genesis.GenesisFile { /// /// Genesis meter files which can be erased before FW-Update and have to be restored after FW-Update. /// public class MeterFilesEraseRestore { /// /// This defines a name only or a mask with ending wildcard e.g. "1\\upg*" /// public List Erase; /// /// This defines an exact name, the size and eventually a test pattern to write to the file, /// if the test pattern is null, the FSeek can be used to write a single byte at the end. /// public List Restore; } }