16 lines
414 B
C#
16 lines
414 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace KanSan.Base.Interfaces
|
|
{
|
|
public interface ILeistungsverzeichnisViewPosition
|
|
{
|
|
public string Positionsnummer { get; set; }
|
|
public string Beschreibung { get; set; }
|
|
public string Einheit { get; set; }
|
|
public string Tag { get; set; }
|
|
public bool IsActiveInBaustelle { get; set; }
|
|
}
|
|
}
|