from app.main.util.json_objects.json_serializable import JsonSerializable


class CompetitorDTO(JsonSerializable):

    def __init__(self):
        JsonSerializable.__init__(self)

        self.id = None
        self.se_configuration_id = None
        self.name = None
        self.fixed_name = None
        self.description = None
        self.image_path = None
        self.chiffres_cles = None
        self.production_cost = None
        self.production_capacity = None
        self.fret_market1 = None
        self.fret_market2 = None