mirror of
				https://github.com/Kareadita/Kavita.git
				synced 2025-10-31 10:37:04 -04:00 
			
		
		
		
	
		
			
				
	
	
		
			20 lines
		
	
	
		
			507 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			20 lines
		
	
	
		
			507 B
		
	
	
	
		
			C#
		
	
	
	
	
	
| using API.DTOs.Filtering.v2;
 | |
| 
 | |
| namespace API.Entities;
 | |
| 
 | |
| /// <summary>
 | |
| /// Represents a Saved user Filter
 | |
| /// </summary>
 | |
| public class AppUserSmartFilter
 | |
| {
 | |
|     public int Id { get; set; }
 | |
|     public required string Name { get; set; }
 | |
|     /// <summary>
 | |
|     /// This is the Filter url encoded. It is decoded and reconstructed into a <see cref="FilterV2Dto"/>
 | |
|     /// </summary>
 | |
|     public required string Filter { get; set; }
 | |
| 
 | |
|     public int AppUserId { get; set; }
 | |
|     public AppUser AppUser { get; set; }
 | |
| }
 |