Files
BeWoPlaner/BeWoPlanerMobil/Views/DevExpressScheduler/ParticipationInfoObject.cs
2026-06-29 13:45:41 +02:00

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;
}
}
}