mirror of
				https://github.com/Kareadita/Kavita.git
				synced 2025-10-31 02:27:04 -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;
 | |
| }
 |