mirror of
https://github.com/radzenhq/radzen-blazor.git
synced 2026-02-04 05:35:44 +00:00
25 lines
693 B
C#
25 lines
693 B
C#
using System;
|
|
using Radzen.Blazor;
|
|
|
|
namespace Radzen
|
|
{
|
|
/// <summary>
|
|
/// Supplies information about a <see cref="RadzenScheduler{TItem}.LoadData" /> event that is being raised.
|
|
/// </summary>
|
|
public class SchedulerLoadDataEventArgs
|
|
{
|
|
/// <summary>
|
|
/// The start of the currently rendered period.
|
|
/// </summary>
|
|
public DateTime Start { get; set; }
|
|
/// <summary>
|
|
/// The start of the currently rendered period.
|
|
/// </summary>
|
|
public DateTime End { get; set; }
|
|
/// <summary>
|
|
/// The selected view of the scheduler.
|
|
/// </summary>
|
|
public ISchedulerView? View { get; set; }
|
|
|
|
}
|
|
} |