13 lines
360 B
C#
13 lines
360 B
C#
using System;
|
|
|
|
namespace KanSan
|
|
{
|
|
public class Leistungsverzeichniss
|
|
{
|
|
public Guid LeistungsverzeichnissID { get; set; }
|
|
public string Position { get; set; }
|
|
public string PositionBeschreibung { get; set; }
|
|
public string PositionEinheit { get; set; }
|
|
public decimal PositionEinheitspreis { get; set; }
|
|
}
|
|
} |