mirror of
				https://github.com/yattee/yattee.git
				synced 2025-10-31 12:41:57 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			13 lines
		
	
	
		
			220 B
		
	
	
	
		
			Swift
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			220 B
		
	
	
	
		
			Swift
		
	
	
	
	
	
| import Foundation
 | |
| 
 | |
| struct Captions: Hashable, Identifiable {
 | |
|     var id = UUID().uuidString
 | |
|     let label: String
 | |
|     let code: String
 | |
|     let url: URL
 | |
| 
 | |
|     var description: String {
 | |
|         "\(label) (\(code))"
 | |
|     }
 | |
| }
 | 
