mirror of
				https://github.com/Kareadita/Kavita.git
				synced 2025-11-03 19:17:05 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			13 lines
		
	
	
		
			207 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			207 B
		
	
	
	
		
			C#
		
	
	
	
	
	
namespace API.Entities.Scrobble;
 | 
						|
 | 
						|
public enum ScrobbleEventSortField
 | 
						|
{
 | 
						|
    None = 0,
 | 
						|
    Created = 1,
 | 
						|
    LastModified = 2,
 | 
						|
    Type= 3,
 | 
						|
    Series = 4,
 | 
						|
    IsProcessed = 5,
 | 
						|
    ScrobbleEventFilter = 6
 | 
						|
}
 |