Kavita/Kavita.Common/Helpers/NumberHelper.cs
Fesaa c62b20f54b
BE Tech Debt (#4497)
Co-authored-by: Joseph Milazzo <joseph.v.milazzo@gmail.com>
Co-authored-by: Joe Milazzo <josephmajora@gmail.com>
2026-03-07 10:04:08 -08:00

9 lines
236 B
C#

namespace Kavita.Common.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;
}