1
0
Fork 0
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:
Yan Maniez 2018-06-29 23:44:00 +02:00
parent e402a6ff81
commit 392a647f08
2 changed files with 104 additions and 73 deletions

View file

@ -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)