Bilder können jetzt hinterlegt werden
This commit is contained in:
20
KlassenBIB/SavedBilder.cs
Normal file
20
KlassenBIB/SavedBilder.cs
Normal 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;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user