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