mirror of
https://github.com/radzenhq/radzen-blazor.git
synced 2026-07-08 18:16:08 +00:00
Assume .NET 7+ paths by default and delete legacy fallback-only event handler declarations.
38 lines
567 B
C#
38 lines
567 B
C#
namespace Radzen;
|
|
|
|
/// <summary>
|
|
/// Specifies the time unit of <see cref="System.TimeSpan"/>.
|
|
/// </summary>
|
|
public enum TimeSpanUnit
|
|
{
|
|
/// <summary>
|
|
/// Day.
|
|
/// </summary>
|
|
Day = 0,
|
|
|
|
/// <summary>
|
|
/// Hour.
|
|
/// </summary>
|
|
Hour = 1,
|
|
|
|
/// <summary>
|
|
/// Minute.
|
|
/// </summary>
|
|
Minute = 2,
|
|
|
|
/// <summary>
|
|
/// Second.
|
|
/// </summary>
|
|
Second = 3,
|
|
|
|
/// <summary>
|
|
/// Millisecond.
|
|
/// </summary>
|
|
Millisecond = 4,
|
|
/// <summary>
|
|
/// Microsecond.
|
|
/// </summary>
|
|
Microsecond = 5
|
|
}
|
|
|