23 lines
349 B
Python
23 lines
349 B
Python
from abc import ABC, abstractmethod
|
|
|
|
|
|
class TemplateFileABC(ABC):
|
|
@abstractmethod
|
|
def __init__(self):
|
|
pass
|
|
|
|
@property
|
|
@abstractmethod
|
|
def name(self) -> str:
|
|
pass
|
|
|
|
@property
|
|
@abstractmethod
|
|
def path(self) -> str:
|
|
pass
|
|
|
|
@property
|
|
@abstractmethod
|
|
def value(self) -> str:
|
|
pass
|