mirror of
https://github.com/Kareadita/Kavita.git
synced 2026-03-10 20:15:26 -04:00
Co-authored-by: Joseph Milazzo <joseph.v.milazzo@gmail.com> Co-authored-by: Joe Milazzo <josephmajora@gmail.com>
9 lines
236 B
C#
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;
|
|
}
|