You've already forked Curso-lenguaje-python
Add movies trivial Bot for Telegram
This commit is contained in:
16
catch-all/06_bots_telegram/07_movie2_bot/movie/Movie.py
Normal file
16
catch-all/06_bots_telegram/07_movie2_bot/movie/Movie.py
Normal file
@@ -0,0 +1,16 @@
|
||||
from abc import ABC, abstractmethod
|
||||
|
||||
|
||||
class Movie(ABC):
|
||||
|
||||
id = 0
|
||||
name = ''
|
||||
type = ''
|
||||
|
||||
@abstractmethod
|
||||
def __init__(self, name):
|
||||
self.name = name
|
||||
self.type = None
|
||||
|
||||
def get_name(self):
|
||||
return self.name
|
||||
Reference in New Issue
Block a user