Bilder können jetzt hinterlegt werden

This commit is contained in:
Husky
2018-07-01 16:28:13 +02:00
parent 88af76b01f
commit 78ccc768df
11 changed files with 468 additions and 20 deletions

20
KlassenBIB/SavedBilder.cs Normal file
View File

@@ -0,0 +1,20 @@
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;
}
}
}