serverboerse/classes/hdd.py

8 lines
178 B
Python
Raw Permalink Normal View History

2021-05-02 10:19:17 +00:00
class HDD:
def __init__(self, size, count):
self.size = size
self.count = count
@property
def total_size(self):
return self.size * self.count