mirror of
https://github.com/Kareadita/Kavita.git
synced 2025-05-24 00:52:23 -04:00
9 lines
226 B
C#
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;
|
|
}
|