1
0
Fork 0
mirror of https://github.com/Nioux/AideDeJeu.git synced 2025-12-22 18:13:23 +00:00

Description, Table

This commit is contained in:
Yan Maniez 2019-04-09 01:37:58 +02:00
parent 63ee4b6a17
commit 6896458d8c
77 changed files with 293 additions and 118 deletions

View file

@ -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; }

View file

@ -1,7 +1,8 @@
namespace AideDeJeuLib
{
public class BackgroundSpecialtyItem : Item
public class BackgroundSpecialtyItem : Item, TableProperty
{
public string Table { get; set; }
}
}

View file

@ -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; }
}
}

View file

@ -1,6 +1,7 @@
namespace AideDeJeuLib
{
public class PersonalityDefectItem : Item
public class PersonalityDefectItem : Item, TableProperty
{
public string Table { get; set; }
}
}

View file

@ -1,6 +1,7 @@
namespace AideDeJeuLib
{
public class PersonalityIdealItem : Item
public class PersonalityIdealItem : Item, TableProperty
{
public string Table { get; set; }
}
}

View file

@ -1,6 +1,7 @@
namespace AideDeJeuLib
{
public class PersonalityLinkItem : Item
public class PersonalityLinkItem : Item, TableProperty
{
public string Table { get; set; }
}
}

View file

@ -1,6 +1,7 @@
namespace AideDeJeuLib
{
public class PersonalityTraitItem : Item
public class PersonalityTraitItem : Item, TableProperty
{
public string Table { get; set; }
}
}

View file

@ -0,0 +1,7 @@
namespace AideDeJeuLib
{
interface TableProperty
{
string Table { get; set; }
}
}

View file

@ -2,6 +2,5 @@
{
public class SkillItem : Item
{
}
}