mirror of
https://github.com/radzenhq/radzen-blazor.git
synced 2026-07-08 18:16:08 +00:00
28 lines
755 B
C#
28 lines
755 B
C#
using System;
|
|
using Radzen.Blazor;
|
|
using Radzen.Blazor.Rendering;
|
|
|
|
namespace Radzen;
|
|
|
|
/// <summary>
|
|
/// Supplies information about a <see cref="DropableViewBase.AppointmentMove" /> event that is being raised.
|
|
/// </summary>
|
|
public class SchedulerAppointmentMoveEventArgs
|
|
{
|
|
/// <summary>
|
|
/// Gets or sets the appointment data.
|
|
/// </summary>
|
|
public AppointmentData? Appointment { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or sets the time span which represents the difference between slot start and appointment start.
|
|
/// </summary>
|
|
public TimeSpan TimeSpan { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or sets the date of the slot where the appointment is moved.
|
|
/// </summary>
|
|
public DateTime SlotDate { get; set; }
|
|
}
|
|
|