Files
radzen-blazor/Radzen.Blazor/TimeSpanUnit.cs
Atanas Korchev d109c2e295 Remove NET7 preprocessor guards from Blazor components.
Assume .NET 7+ paths by default and delete legacy fallback-only event handler declarations.
2026-02-12 11:22:24 +02:00

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
}