poc in folder

This commit is contained in:
Louis Auzuret
2022-05-05 11:26:57 +02:00
parent 4e9ad2a05f
commit cc85121465
20 changed files with 0 additions and 0 deletions
+13
View File
@@ -0,0 +1,13 @@
class Note:
def __init__(self, start_time, data) -> None:
self.__start_time = start_time
self.__data = data
def get_start_time(self):
return self.__start_time
def get_data(self):
return self.__data