20 lines
483 B
C#
20 lines
483 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace Service.MeterProcessState.Data
|
|
{
|
|
public partial class Pruefstation : Ui.Web.IMeterDataCenter.Data.BaseEntity
|
|
{
|
|
public Pruefstation()
|
|
{
|
|
}
|
|
|
|
public Int16 PruefstationNr { get; set; }
|
|
public Int16 PruefstationTyp { get; set; }
|
|
public Int16? ScanKennung { get; set; }
|
|
public String Bemerkung { get; set; }
|
|
public Boolean? Gesperrt { get; set; }
|
|
|
|
}
|
|
}
|