mirror of
https://github.com/Nioux/AideDeJeu.git
synced 2025-12-22 01:53:24 +00:00
Corrections textes et préparation généralisation des properties
This commit is contained in:
parent
e402a6ff81
commit
392a647f08
2 changed files with 104 additions and 73 deletions
|
|
@ -3,6 +3,16 @@ using System.Xml;
|
|||
|
||||
namespace AideDeJeuLib
|
||||
{
|
||||
public class Property : Dictionary<string, string>
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
public class Properties : Dictionary<string, Property>
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
public class Item
|
||||
{
|
||||
public string Id { get; set; }
|
||||
|
|
@ -11,6 +21,9 @@ namespace AideDeJeuLib
|
|||
public string Name { get; set; }
|
||||
public string NameVO { get; set; }
|
||||
public string NamePHB { get; set; }
|
||||
|
||||
public Properties Properties { get; set; }
|
||||
|
||||
public string Html { get; set; }
|
||||
|
||||
public static IEnumerable<string> NodeListToStringList(IEnumerable<XmlNode> nodes)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue