Kavita/API/Helpers/NumberHelper.cs
2023-11-02 06:35:43 -07:00

9 lines
226 B
C#

namespace API.Helpers;
#nullable enable
public static class NumberHelper
{
public static bool IsValidMonth(int number) => number is > 0 and <= 12;
public static bool IsValidYear(int number) => number is >= 1000;
}