19 lines
364 B
C#
19 lines
364 B
C#
using BS.Shared.Core;
|
|
|
|
namespace BeWo.Controls.Controls.Calendar
|
|
{
|
|
internal struct AppointmentBarRenderInf
|
|
{
|
|
public Appointment Appointment;
|
|
|
|
public int BarCount;
|
|
|
|
public int EndTimeIndex;
|
|
|
|
public int StartDateIndex;
|
|
|
|
public int StartTimeIndex;
|
|
|
|
public DateTimeSpan UsedDuration;
|
|
}
|
|
} |