21 lines
444 B
C#
21 lines
444 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace BeWo.ViewModel
|
|
{
|
|
public class SuchergebnisVM
|
|
{
|
|
public string FileName { get; set; }
|
|
public string FilePath { get; set; }
|
|
|
|
public SuchergebnisVM(string FileName, string FilePath)
|
|
{
|
|
this.FileName = FileName;
|
|
this.FilePath = FilePath;
|
|
}
|
|
}
|
|
}
|