18 lines
661 B
C#
18 lines
661 B
C#
namespace BeWoPlanerMobil.Views.DevExpressScheduler
|
|
{
|
|
public class ParticipationInfoObject
|
|
{
|
|
public string EmployeeName { get; }
|
|
public long Employee2AppointmentOid { get; }
|
|
public long AppointmentOid { get; }
|
|
public int ParticipationAnswer { get; }
|
|
|
|
public ParticipationInfoObject(string employeeName, long employee2AppointmentOid, int participationAnswer, long appointmentOid)
|
|
{
|
|
EmployeeName = employeeName;
|
|
Employee2AppointmentOid = employee2AppointmentOid;
|
|
ParticipationAnswer = participationAnswer;
|
|
AppointmentOid = appointmentOid;
|
|
}
|
|
}
|
|
} |