feat: add data model for licence

This commit is contained in:
2024-02-03 19:23:37 +01:00
parent 58c2134e35
commit c6130cf65f
5 changed files with 64 additions and 6 deletions

View File

@@ -49,10 +49,4 @@ public class ClubEntity {
.international(model.isInternational())
.build();
}
public ClubModel toModel () {
return new ClubModel(this.id, this.clubId, this.name, this.country, this.shieldURL, this.contact, this.training_location,
this.training_day_time, this.contact_intern, this.RNA, this.SIRET, this.no_affiliation,
this.international);
}
}