mirror of
				https://github.com/yattee/yattee.git
				synced 2025-10-31 12:41:57 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			9 lines
		
	
	
		
			147 B
		
	
	
	
		
			Swift
		
	
	
	
	
	
			
		
		
	
	
			9 lines
		
	
	
		
			147 B
		
	
	
	
		
			Swift
		
	
	
	
	
	
| import Foundation
 | |
| 
 | |
| struct Chapter: Identifiable, Equatable {
 | |
|     var id = UUID()
 | |
|     var title: String
 | |
|     var image: URL?
 | |
|     var start: Double
 | |
| }
 | 
