mirror of
				https://github.com/axllent/mailpit.git
				synced 2025-10-31 00:07:43 +02:00 
			
		
		
		
	
		
			
	
	
		
			19 lines
		
	
	
		
			298 B
		
	
	
	
		
			Go
		
	
	
	
	
	
		
		
			
		
	
	
			19 lines
		
	
	
		
			298 B
		
	
	
	
		
			Go
		
	
	
	
	
	
|   | package data | ||
|  | 
 | ||
|  | import "time" | ||
|  | 
 | ||
|  | // MailboxSummary struct | ||
|  | type MailboxSummary struct { | ||
|  | 	Name        string | ||
|  | 	Slug        string | ||
|  | 	Total       int | ||
|  | 	Unread      int | ||
|  | 	LastMessage time.Time | ||
|  | } | ||
|  | 
 | ||
|  | // WebsocketNotification struct for responses | ||
|  | type WebsocketNotification struct { | ||
|  | 	Type string | ||
|  | 	Data interface{} | ||
|  | } |