12 lines
		
	
	
		
			192 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
		
			192 B
		
	
	
	
		
			C#
		
	
	
	
	
	
| using Gallery.Util.Model;
 | |
| 
 | |
| namespace Gallery.Util.Interface
 | |
| {
 | |
|     public interface IGallerySource
 | |
|     {
 | |
|         string GetCookie();
 | |
| 
 | |
|         GalleryItem[] GetRecentItems(int page);
 | |
|     }
 | |
| }
 |