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

14 lines
379 B
C#

namespace BeWoPlanerMobil.Views.DevExpressScheduler
{
public class CustomerInfoObject
{
public long? AppointmentOid { get; }
public string CustomerName { get; }
public CustomerInfoObject(long? appointmentOid, string customerName)
{
AppointmentOid = appointmentOid;
CustomerName = customerName;
}
}
}