Files
radzen-blazor/Radzen.Blazor/SchedulerAppointmentMoveEventArgs.cs

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