mirror of
				https://github.com/Kareadita/Kavita.git
				synced 2025-10-31 10:37:04 -04:00 
			
		
		
		
	
		
			
				
	
	
		
			11 lines
		
	
	
		
			269 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
		
			269 B
		
	
	
	
		
			C#
		
	
	
	
	
	
| namespace API.DTOs.Email;
 | |
| 
 | |
| /// <summary>
 | |
| /// Represents if Test Email Service URL was successful or not and if any error occured
 | |
| /// </summary>
 | |
| public class EmailTestResultDto
 | |
| {
 | |
|     public bool Successful { get; set; }
 | |
|     public string ErrorMessage { get; set; }
 | |
| }
 |