diff --git a/README.md b/README.md index f988b55..0ff4c1e 100644 --- a/README.md +++ b/README.md @@ -7,12 +7,15 @@ classDiagram + PremierEp : int + Description : string + Caracteristique : string + + Bateau(nom : string, nomRomanise : string, premierChap : int, premierEp : int, description : string, caracteristique : string, image : string) + + Bateau(nom : string, nomRomanise : string, affiliation : Equipage , premierChap : int, premierEp : int, description : string, caracteristique : string, image : string) } class Bestiaire { + Origine : string + Description : string + Caracteristique : string + + Bestiaire(nom : string, origine : string, description : string, caracteristique : string, image : string) } class Equipage { @@ -22,6 +25,7 @@ classDiagram + PremierEp : int + Statut : bool + Description : string + + Equipage(nom : string, nomRomanise : string, region : string, premierChap : int, premierEp : int, statut : bool, description : string , image : string) } class FruitDuDemon { @@ -32,6 +36,8 @@ classDiagram + Description : string + Forces : string + Faiblesses : string + + FruitDuDemon(nom : string, nomRomanise : string, type : string, premierChap : int, premierEp : int, description : string, forces : string, faiblesses : string, image : string) + + FruitDuDemon(nom : string, nomRomanise : string, type : string, premierChap : int, premierEp : int, description : string, forces : string, faiblesses : string, image : string, utilisateur : List~Personnage~) } class Ile { @@ -41,6 +47,7 @@ classDiagram + PremierEp : int + Description : string + Geographie : string + + Ile(nom : string, nomRomanise : string, region : string, premierChap : int, premierEp : int, description : string, geographie : string, image : string) } class Personnage { @@ -51,11 +58,13 @@ classDiagram + Origine : string + Biographie : string + Citation : string + + Personnage(nom : string, prime : double, epithete : string, int age, taill: double, origine : string, biographie : string, citation : string, image : string) } class ObjetOhara { + Nom : string + Image : string? + ObjetOhara(nom : string, image : string) } diff --git a/Sources/Model/ObjetOhara.cs b/Sources/Model/ObjetOhara.cs index 0efc395..c98807c 100644 --- a/Sources/Model/ObjetOhara.cs +++ b/Sources/Model/ObjetOhara.cs @@ -21,3 +21,5 @@ namespace Model } } } + +