mirror of
				https://github.com/Kareadita/Kavita.git
				synced 2025-11-03 19:17:05 -05: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;
 | 
						|
}
 |