1
0
Fork 0
mirror of https://github.com/Nioux/AideDeJeu.git synced 2025-10-30 15:06:06 +00:00
AideDeJeu/AideDeJeu/AideDeJeuLib/Item.cs
2018-05-23 20:28:50 +02:00

13 lines
354 B
C#

namespace AideDeJeuLib
{
public class Item
{
public string Id { get; set; }
public string IdVO { get; set; }
public string IdVF { get; set; }
public string Name { get; set; }
public string NameVO { get; set; }
public string NamePHB { get; set; }
public string Html { get; set; }
}
}