Files
BeWoPlaner/BeWo/ViewModel/PrintSelectionVM.cs
2021-01-13 11:21:51 +01:00

34 lines
867 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace BeWo.ViewModel
{
public class PrintSelectionVM
{
public bool Selected { get; set; }
public string FirstName { get; set; }
public string LastName { get; set; }
public long? Table { get; set; }
public long? ObjectOid { get; set; }
public PrintSelectionVM(){ }
public PrintSelectionVM(string LastName, string FirstName, long? Table, long? ObjectOid)
{
this.Selected = false;
this.LastName = LastName;
this.FirstName = FirstName;
this.Table = Table;
this.ObjectOid = ObjectOid;
}
public override string ToString()
{
return LastName + ", " + FirstName;
}
}
}