Compare commits
	
		
			5 Commits
		
	
	
		
			0dc358d053
			...
			82f8a61d16
		
	
	| Author | SHA1 | Date | |
|---|---|---|---|
| 82f8a61d16 | |||
| f8e1012f3e | |||
| a3c5b350fc | |||
| 0279f667b3 | |||
| 0a5e98f417 | 
							
								
								
									
										1119
									
								
								design/design.gaphor
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										1119
									
								
								design/design.gaphor
									
									
									
									
									
										Normal file
									
								
							
										
											
												File diff suppressed because it is too large
												Load Diff
											
										
									
								
							
							
								
								
									
										34
									
								
								shadowtube/types.py
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										34
									
								
								shadowtube/types.py
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,34 @@
 | 
			
		||||
class Video:
 | 
			
		||||
    def __init__(
 | 
			
		||||
        self,
 | 
			
		||||
        id: str,
 | 
			
		||||
        title: str,
 | 
			
		||||
        description: str,
 | 
			
		||||
        watch_time: float,
 | 
			
		||||
        watch_progress: float,
 | 
			
		||||
    ):
 | 
			
		||||
        self._id = id
 | 
			
		||||
        self._title = title
 | 
			
		||||
        self._description = description
 | 
			
		||||
        self._watch_time = watch_time
 | 
			
		||||
        self._watch_progress = watch_progress
 | 
			
		||||
 | 
			
		||||
    @property
 | 
			
		||||
    def title(self):
 | 
			
		||||
        return self._title
 | 
			
		||||
 | 
			
		||||
    @property
 | 
			
		||||
    def id(self):
 | 
			
		||||
        return self._id
 | 
			
		||||
 | 
			
		||||
    @property
 | 
			
		||||
    def description(self):
 | 
			
		||||
        return self._description
 | 
			
		||||
 | 
			
		||||
    @property
 | 
			
		||||
    def watch_time(self):
 | 
			
		||||
        return self._watch_time
 | 
			
		||||
 | 
			
		||||
    @property
 | 
			
		||||
    def watch_progress(self):
 | 
			
		||||
        return self._watch_progress
 | 
			
		||||
		Reference in New Issue
	
	Block a user