mirror of
https://github.com/Nioux/AideDeJeu.git
synced 2025-12-22 18:13:23 +00:00
Description, Table
This commit is contained in:
parent
63ee4b6a17
commit
6896458d8c
77 changed files with 293 additions and 118 deletions
|
|
@ -3,7 +3,6 @@
|
|||
|
||||
public class BackgroundItem : Item
|
||||
{
|
||||
public string Description { get; set; }
|
||||
public string Abilities { get; set; }
|
||||
public string MasteredTools { get; set; }
|
||||
public string MasteredLanguages { get; set; }
|
||||
|
|
|
|||
|
|
@ -1,7 +1,8 @@
|
|||
namespace AideDeJeuLib
|
||||
{
|
||||
|
||||
public class BackgroundSpecialtyItem : Item
|
||||
public class BackgroundSpecialtyItem : Item, TableProperty
|
||||
{
|
||||
public string Table { get; set; }
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -344,5 +344,8 @@ namespace AideDeJeuLib
|
|||
[NotMapped]
|
||||
[IgnoreDataMember]
|
||||
public Dictionary<string, string> Attributes { get; set; } = new Dictionary<string, string>();
|
||||
|
||||
[DataMember]
|
||||
public string Description { get; set; }
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,6 +1,7 @@
|
|||
namespace AideDeJeuLib
|
||||
{
|
||||
public class PersonalityDefectItem : Item
|
||||
public class PersonalityDefectItem : Item, TableProperty
|
||||
{
|
||||
public string Table { get; set; }
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,6 +1,7 @@
|
|||
namespace AideDeJeuLib
|
||||
{
|
||||
public class PersonalityIdealItem : Item
|
||||
public class PersonalityIdealItem : Item, TableProperty
|
||||
{
|
||||
public string Table { get; set; }
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,6 +1,7 @@
|
|||
namespace AideDeJeuLib
|
||||
{
|
||||
public class PersonalityLinkItem : Item
|
||||
public class PersonalityLinkItem : Item, TableProperty
|
||||
{
|
||||
public string Table { get; set; }
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,6 +1,7 @@
|
|||
namespace AideDeJeuLib
|
||||
{
|
||||
public class PersonalityTraitItem : Item
|
||||
public class PersonalityTraitItem : Item, TableProperty
|
||||
{
|
||||
public string Table { get; set; }
|
||||
}
|
||||
}
|
||||
|
|
|
|||
7
AideDeJeu/AideDeJeu/Models/Properties.cs
Normal file
7
AideDeJeu/AideDeJeu/Models/Properties.cs
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
namespace AideDeJeuLib
|
||||
{
|
||||
interface TableProperty
|
||||
{
|
||||
string Table { get; set; }
|
||||
}
|
||||
}
|
||||
|
|
@ -2,6 +2,5 @@
|
|||
{
|
||||
public class SkillItem : Item
|
||||
{
|
||||
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue