36 lines
772 B
C#
36 lines
772 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace KlassenBIB
|
|
{
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public class LeistungsVerzeichnis
|
|
{
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public string PositionsNummer { get; set; }
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public string PositionsBeschreibung { get; set; }
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public string PositionsEinheit { get; set; }
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
/// <returns></returns>
|
|
public override string ToString()
|
|
{
|
|
return PositionsBeschreibung;
|
|
}
|
|
}
|
|
}
|