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