14 lines
379 B
C#
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;
|
|
}
|
|
}
|
|
} |