Files
Kanalsanierungsverwaltung/KlassenBIB/SavedBilder.cs
2018-07-01 16:28:13 +02:00

21 lines
418 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace KlassenBIB
{
public class SavedBilder
{
public string Bildname { get; set; }
public string Speicherpfad { get; set; }
public string Bemerkung { get; set; }
public override string ToString()
{
return Bildname;
}
}
}