mirror of
https://github.com/jayfunc/BetterLyrics.git
synced 2026-01-12 19:08:33 +08:00
11 lines
285 B
C#
11 lines
285 B
C#
using System;
|
|
|
|
namespace BetterLyrics.WinUI3.Constants
|
|
{
|
|
public static class Time
|
|
{
|
|
public static readonly TimeSpan DebounceTimeout = TimeSpan.FromMilliseconds(250);
|
|
public static readonly TimeSpan AnimationDuration = TimeSpan.FromMilliseconds(350);
|
|
}
|
|
}
|