16 lines
398 B
C#
16 lines
398 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace KanSan.Base.Interfaces.UI
|
|
{
|
|
public interface ISchaedenEditViewModel
|
|
{
|
|
decimal Entfernung { get; set; }
|
|
bool WurzelInkrustationAblagerungen { get; set; }
|
|
bool RissBruchScherbe { get; set; }
|
|
bool EinragendeStutzen { get; set; }
|
|
string Sanierungstyp { get; set; }
|
|
}
|
|
}
|